about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-10-04 23:51:32 -0700
committerbors <bors@rust-lang.org>2013-10-04 23:51:32 -0700
commit1506dac10faf4b48f3d3debb9b20f2f55352deca (patch)
treec114394c4722c8cbe7517ff0e53511847326af9c /src/libstd
parentbae0ce2a69e7cef568279e2228cde3b2d225f880 (diff)
parent03099e56789271c35e64c18542db192c086b586e (diff)
downloadrust-1506dac10faf4b48f3d3debb9b20f2f55352deca.tar.gz
rust-1506dac10faf4b48f3d3debb9b20f2f55352deca.zip
auto merge of #9727 : Valloric/rust/doc-fixes, r=catamorphism
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/str.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/str.rs b/src/libstd/str.rs
index ab5d32091a4..9649bd9c0aa 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.