diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-11-07 06:44:45 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-11-07 06:44:45 +0530 |
| commit | 50e8707cc3ff4c08c2e45cffae0ab6ab5295d45a (patch) | |
| tree | c46d8d2ac0791e9c6d5be5ce280670745927e349 /src | |
| parent | 6dbd2509f0470b1e46b631c3410915d1b3a69051 (diff) | |
| parent | 586eb3d50fa964fe3d9bd7f36b6f2a4341774e00 (diff) | |
Rollup merge of #29617 - steveklabnik:gh29591, r=alexcrichton
Fixes #29591
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/trpl/strings.md | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/src/doc/trpl/strings.md b/src/doc/trpl/strings.md index 18483664989..f61b4d8ed8d 100644 --- a/src/doc/trpl/strings.md +++ b/src/doc/trpl/strings.md @@ -24,9 +24,29 @@ compiled program, and exists for the entire duration it runs. The `greeting` binding is a reference to this statically allocated string. String slices have a fixed size, and cannot be mutated. -A `String`, on the other hand, is a heap-allocated string. This string is -growable, and is also guaranteed to be UTF-8. `String`s are commonly created by -converting from a string slice using the `to_string` method. +String literals can span multiple lines. There are two forms. The first will +include the newline and the leading spaces: + +```rust +let s = "foo + bar"; + +assert_eq!("foo\n bar", s); +``` + +The second, with a `\`, does not trim the spaces: + +```rust +let s = "foo\ + bar"; + +assert_eq!("foobar", s); +``` + +Rust has more than just `&str`s though. A `String`, is a heap-allocated string. +This string is growable, and is also guaranteed to be UTF-8. `String`s are +commonly created by converting from a string slice using the `to_string` +method. ```rust let mut s = "Hello".to_string(); // mut s: String |
