diff options
| author | bors <bors@rust-lang.org> | 2013-10-04 22:36:33 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-10-04 22:36:33 -0700 |
| commit | bae0ce2a69e7cef568279e2228cde3b2d225f880 (patch) | |
| tree | d179bbfbae12c208e091e5d79c164c62304b8813 | |
| parent | 5a1073fbabed2c0265a33dab6fdb86df3d957428 (diff) | |
| parent | d629aca81a553455dcc01167e0dece0e00d2b8ef (diff) | |
| download | rust-bae0ce2a69e7cef568279e2228cde3b2d225f880.tar.gz rust-bae0ce2a69e7cef568279e2228cde3b2d225f880.zip | |
auto merge of #9726 : Valloric/rust/typo_fix, r=alexcrichton
| -rw-r--r-- | src/libstd/str.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/str.rs b/src/libstd/str.rs index 56e8efe2a3c..ab5d32091a4 100644 --- a/src/libstd/str.rs +++ b/src/libstd/str.rs @@ -16,7 +16,7 @@ String manipulation Rust's string type is one of the core primitive types of the language. While represented by the name `str`, the name `str` is not actually a valid type in -Rust. Each string must also be decorated with how its ownership. This means that +Rust. Each string must also be decorated with its ownership. This means that there are three common kinds of strings in rust: * `~str` - This is an owned string. This type obeys all of the normal semantics |
