From d629aca81a553455dcc01167e0dece0e00d2b8ef Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Fri, 4 Oct 2013 21:24:29 -0700 Subject: [PATCH] Fix minor typo in std::str module docs --- src/libstd/str.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/str.rs b/src/libstd/str.rs index 56e8efe2a3c67..ab5d32091a490 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