From 80d54a12ac059540876db3d04eccd13b1f8ae318 Mon Sep 17 00:00:00 2001 From: bluss Date: Mon, 11 Sep 2017 19:44:15 +0200 Subject: [PATCH] DOC: Update ArrayString doc for push, push_str after 0.4 changes. --- src/array_string.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/array_string.rs b/src/array_string.rs index 25beb46..587b613 100644 --- a/src/array_string.rs +++ b/src/array_string.rs @@ -115,8 +115,6 @@ impl> ArrayString { /// 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. /// /// ``` @@ -166,8 +164,6 @@ impl> ArrayString { /// 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. /// /// ```