Error messages don't have fancy quotes

This commit is contained in:
Carol (Nichols || Goulding) 2016-11-09 16:24:32 -05:00
parent 268ed1008b
commit 2c34e8b073
3 changed files with 3 additions and 3 deletions

View File

@ -809,7 +809,7 @@ the parts about lifetimes, the message does contain the key to why this code is
a problem:
```
this functions return type contains a borrowed value, but there is no value
this function's return type contains a borrowed value, but there is no value
for it to be borrowed from.
```

Binary file not shown.

View File

@ -266,8 +266,8 @@ This error message refers to a feature we havent learned about yet:
the parts about lifetimes, the message does contain the key to why this code is
a problem:
```
this functions return type contains a borrowed value, but there is no value
```bash
this function's return type contains a borrowed value, but there is no value
for it to be borrowed from.
```