Removes extra .

This commit is contained in:
Rahul Horé 2014-10-03 15:41:59 -04:00
parent d3f8f8a849
commit 0eb4df9ace
1 changed files with 1 additions and 1 deletions

View File

@ -3621,7 +3621,7 @@ let x = box 5i;
```
This allocates an integer `5` on the heap, and creates a binding `x` that
refers to it.. The great thing about boxed pointers is that we don't have to
refers to it. The great thing about boxed pointers is that we don't have to
manually free this allocation! If we write
```{rust}