Don't use 'synonym' with regards to newtypes

Fixes #20037.
This commit is contained in:
Steve Klabnik 2015-01-12 15:30:11 -05:00
parent b21a6da340
commit 16a8c4d238

View file

@ -182,7 +182,7 @@ and with a struct, we have actual names.
There _is_ one case when a tuple struct is very useful, though, and that's a
tuple struct with only one element. We call this a *newtype*, because it lets
you create a new type that's a synonym for another one:
you create a new type that's similar to another one:
```{rust}
struct Inches(i32);