Merge pull request #394 from kiliankoe/patch-1

Remove redundant duplicate 'can'
This commit is contained in:
Carol (Nichols || Goulding) 2017-01-17 22:36:01 -05:00 committed by GitHub
commit 4335bd5e93

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.