diff options
| author | Strahinja Val Markovic <val@markovic.io> | 2013-10-04 22:05:34 -0700 |
|---|---|---|
| committer | Strahinja Val Markovic <val@markovic.io> | 2013-10-04 22:07:57 -0700 |
| commit | 03099e56789271c35e64c18542db192c086b586e (patch) | |
| tree | 3f2c0adc178f80eb1d0a58e6c2bb4085a881a2d1 /src/libstd | |
| parent | 1a3141b7c5c3beb2a87e988cf44209979c555946 (diff) | |
| download | rust-03099e56789271c35e64c18542db192c086b586e.tar.gz rust-03099e56789271c35e64c18542db192c086b586e.zip | |
Fixed another minor typo in std::str docs
Diffstat (limited to 'src/libstd')
| -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..fe4a064f500 100644 --- a/src/libstd/str.rs +++ b/src/libstd/str.rs @@ -26,7 +26,7 @@ there are three common kinds of strings in rust: * `@str` - This is a managed string. Similarly to `@T`, this type can be implicitly copied, and each implicit copy will increment the - reference count to the string. This means that there is not "true + reference count to the string. This means that there is no "true owner" of the string, and the string will be deallocated when the reference count reaches 0. |
