Re-added accidentally removed test method.

Also fixed indentation.
This commit is contained in:
Alexander Regueiro
2016-02-05 22:56:44 +00:00
parent 9845491060
commit 0a413975f5
2 changed files with 14 additions and 3 deletions
+2 -2
View File
@@ -44,7 +44,7 @@ impl<A: Array<Item=u8>> ArrayString<A> {
}
}
}
/// Create a new `ArrayString` from a string slice.
///
/// Capacity is inferred from the type parameter.
@@ -62,7 +62,7 @@ impl<A: Array<Item=u8>> ArrayString<A> {
try!(arraystr.push_str(s));
Ok(arraystr)
}
/// Return the capacity of the `ArrayString`.
///
/// ```