DOC: Update ArrayString doc for push, push_str after 0.4 changes.

This commit is contained in:
bluss
2017-09-11 19:44:15 +02:00
parent f33c4e44dd
commit 80d54a12ac
-4
View File
@@ -115,8 +115,6 @@ impl<A: Array<Item=u8>> ArrayString<A> {
/// Adds the given char to the end of the string. /// Adds the given char to the end of the string.
/// ///
/// Returns `Ok` if the push succeeds.
///
/// ***Panics*** if the backing array is not large enough to fit the additional char. /// ***Panics*** if the backing array is not large enough to fit the additional char.
/// ///
/// ``` /// ```
@@ -166,8 +164,6 @@ impl<A: Array<Item=u8>> ArrayString<A> {
/// Adds the given string slice to the end of the string. /// Adds the given string slice to the end of the string.
/// ///
/// Returns `Ok` if the push succeeds.
///
/// ***Panics*** if the backing array is not large enough to fit the string. /// ***Panics*** if the backing array is not large enough to fit the string.
/// ///
/// ``` /// ```