diff --git a/src/doc/trpl/traits.md b/src/doc/trpl/traits.md index 51ee4bf0cdc28..889205ad5d8b1 100644 --- a/src/doc/trpl/traits.md +++ b/src/doc/trpl/traits.md @@ -208,7 +208,7 @@ let result = f.write("whatever".as_bytes()); This will compile without error. -This means that even if someone does something bad like add methods to `int`, +This means that even if someone does something bad like add methods to `i32`, it won’t affect you, unless you `use` that trait. There’s one more restriction on implementing traits. Either the trait or the