Remove redundant duplicate 'can'

This commit is contained in:
Kilian Koeltzsch 2017-01-10 18:41:14 +01:00 committed by GitHub
parent 7328b60b62
commit 4e62d9774e

View File

@ -100,7 +100,7 @@ let hello = "Hola";
### Updating a String
A `String` can can grow in size and its contents can change just like the
A `String` can grow in size and its contents can change just like the
contents of a `Vec`, by pushing more data into it. In addition, `String` has
concatenation operations implemented with the `+` operator for convenience.