diff --git a/src/ch05-03-method-syntax.md b/src/ch05-03-method-syntax.md index 1ea896b38e..289094d78b 100644 --- a/src/ch05-03-method-syntax.md +++ b/src/ch05-03-method-syntax.md @@ -98,7 +98,7 @@ are and how to designate a field or method as public or private in [Chapter > > Rust doesn’t have an equivalent to the `->` operator; instead, Rust has a > feature called *automatic referencing and dereferencing*. Calling methods is -> one of the few places in Rust that has this behavior. +> one of the few places in Rust that have this behavior. > > Here’s how it works: when you call a method with `object.something()`, Rust > automatically adds in `&`, `&mut`, or `*` so `object` matches the signature of