Skip to content

Commit

Permalink
Trivial - Fix Typo in Specialization RFC
Browse files Browse the repository at this point in the history
  • Loading branch information
JinShil authored Dec 6, 2016
1 parent 97944a6 commit 3813ce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion text/1210-impl-specialization.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ default impl<T: Clone, Rhs> Add<Rhs> for T {
```

This default impl does *not* mean that `Add` is implemented for all `Clone`
data, but jut that when you do impl `Add` and `Self: Clone`, you can leave off
data, but just that when you do impl `Add` and `Self: Clone`, you can leave off
`add_assign`:

```rust
Expand Down

0 comments on commit 3813ce9

Please sign in to comment.