about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorStrahinja Val Markovic <val@markovic.io>2013-10-04 21:24:29 -0700
committerStrahinja Val Markovic <val@markovic.io>2013-10-04 21:24:29 -0700
commitd629aca81a553455dcc01167e0dece0e00d2b8ef (patch)
treedbe8085db964e1de1c8a11d9cbea3e862bb053c2 /src
parent1a3141b7c5c3beb2a87e988cf44209979c555946 (diff)
downloadrust-d629aca81a553455dcc01167e0dece0e00d2b8ef.tar.gz
rust-d629aca81a553455dcc01167e0dece0e00d2b8ef.zip
Fix minor typo in std::str module docs
Diffstat (limited to 'src')
-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 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