From 070ba14a713368d8c152bb36e61430b197541c2e Mon Sep 17 00:00:00 2001 From: Squeaky Date: Sat, 27 Sep 2014 02:37:28 +0200 Subject: [PATCH] Correct stability marker in string.rs --- src/libcollections/string.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcollections/string.rs b/src/libcollections/string.rs index 6843996a9e145..ed0767f8eddf9 100644 --- a/src/libcollections/string.rs +++ b/src/libcollections/string.rs @@ -530,7 +530,7 @@ impl String { /// assert_eq!(s.as_slice(), "abc123"); /// ``` #[inline] - #[stable = "function just renamed from push"] + #[stable = "function just renamed from push_char"] pub fn push(&mut self, ch: char) { let cur_len = self.len(); // This may use up to 4 bytes.