Skip to content

Commit

Permalink
Merge pull request rust-lang#1809 from JinShil/patch-1
Browse files Browse the repository at this point in the history
Trivial - Fix Typo in Specialization RFC
  • Loading branch information
steveklabnik authored Dec 7, 2016
2 parents 97944a6 + 3813ce9 commit 0af2f7a
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 0af2f7a

Please sign in to comment.