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. /// /// ```