Skip to content

Commit

Permalink
Merge pull request #1921 from lewisbelcher/patch-1
Browse files Browse the repository at this point in the history
Update ch04-03-slices.md
  • Loading branch information
carols10cents authored Apr 15, 2019
2 parents 3970cf3 + 259e594 commit 50f62a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch04-03-slices.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ fn first_word(s: &String) -> &str {
```

A more experienced Rustacean would write the signature shown in Listing 4-9
instead because it allows us to use the same function on both `String` values
instead because it allows us to use the same function on both `&String` values
and `&str` values.

```rust,ignore
Expand Down

0 comments on commit 50f62a7

Please sign in to comment.