str::to_chars -> str::chars

This commit is contained in:
Jacob Parker 2012-03-25 16:29:18 -04:00
parent f5c91d10dd
commit 82e5fe1d72
1 changed files with 1 additions and 1 deletions

View File

@ -1308,7 +1308,7 @@ iterate over all characters, which `str::chars` helps with), and
for those that do, many don't need actual characters, and can operate
on bytes. For algorithms that do really need to index by character,
there's the option to convert your string to a character vector (using
`str::to_chars`).
`str::chars`).
Like vectors, strings are always unique. You can wrap them in a shared
box to share them. Unlike vectors, there is no mutable variant of