diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-04-07 17:15:58 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-04-07 17:54:35 -0700 |
| commit | 1b568ba0fd531ff33d45cb52d5c8cbfe1908be86 (patch) | |
| tree | 8fc9c711dd8a5f74d292edb549d1476f47e81ec2 /src/libcore/str | |
| parent | f651bea822c7c1b1dcc317e089709804a97e2236 (diff) | |
| download | rust-1b568ba0fd531ff33d45cb52d5c8cbfe1908be86.tar.gz rust-1b568ba0fd531ff33d45cb52d5c8cbfe1908be86.zip | |
std: Hide facade extension traits in docs
These traits are currently all just unstable parts of the facade which are implementation details for primitives further up the facade. This may make it more difficult to find what set of methods you get if only linking to libcore, but for now that's also unstable behavior. Closes #22025
Diffstat (limited to 'src/libcore/str')
| -rw-r--r-- | src/libcore/str/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcore/str/mod.rs b/src/libcore/str/mod.rs index 5c8b6a774cd..9bc760b56ec 100644 --- a/src/libcore/str/mod.rs +++ b/src/libcore/str/mod.rs @@ -1496,6 +1496,7 @@ impl<'a, S: ?Sized> Str for &'a S where S: Str { /// Methods for string slices #[allow(missing_docs)] +#[doc(hidden)] pub trait StrExt { // NB there are no docs here are they're all located on the StrExt trait in // libcollections, not here. |
