diff options
| author | Oliver Middleton <olliemail27@gmail.com> | 2017-01-29 13:31:47 +0000 |
|---|---|---|
| committer | Oliver Middleton <olliemail27@gmail.com> | 2017-01-29 13:31:47 +0000 |
| commit | 9128f6100c9bfe2c2c22d85ccec92f01166f5d25 (patch) | |
| tree | 105ea91f8eee10021f4484f281b1cc1409dcd65e /src/libstd/ascii.rs | |
| parent | 010c3e25c453d0217b114aa125a956cd99f60c88 (diff) | |
| download | rust-9128f6100c9bfe2c2c22d85ccec92f01166f5d25.tar.gz rust-9128f6100c9bfe2c2c22d85ccec92f01166f5d25.zip | |
Fix a few impl stability attributes
The versions show up in rustdoc.
Diffstat (limited to 'src/libstd/ascii.rs')
| -rw-r--r-- | src/libstd/ascii.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/ascii.rs b/src/libstd/ascii.rs index b220504d2b4..35c388ba076 100644 --- a/src/libstd/ascii.rs +++ b/src/libstd/ascii.rs @@ -399,7 +399,7 @@ impl ExactSizeIterator for EscapeDefault {} #[unstable(feature = "fused", issue = "35602")] impl FusedIterator for EscapeDefault {} -#[stable(feature = "std_debug", since = "1.15.0")] +#[stable(feature = "std_debug", since = "1.16.0")] impl fmt::Debug for EscapeDefault { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { f.pad("EscapeDefault { .. }") |
