Remove "same deal"-- redundant with "also" before the code

This commit is contained in:
Carol (Nichols || Goulding) 2016-08-02 16:31:29 -04:00
parent ba95d0a22f
commit 5352d363f5

View File

@ -201,7 +201,7 @@ This would also work for a `second_word()`:
fn second_word(s: &String) -> &str {
```
Same deal. We now have a straightforward API thats much harder to mess up.
We now have a straightforward API thats much harder to mess up.
But what about our error condition from before? Slices also fix that. Using
the slice version of `first_word()` will throw an error: