diff --git a/idioms/deref.md b/idioms/deref.md index 8479af9..0c1712e 100644 --- a/idioms/deref.md +++ b/idioms/deref.md @@ -61,7 +61,7 @@ its data if the only way to access each datum is via the collection and the collection is responsible for deleting the data (even in cases of shared ownership, some kind of borrowed view may be appropriate). If a collection owns its data, it is usually useful to provide a view of the data as borrowed so that -it can be multiplied referenced. +it can be referenced multiple times. Most smart pointers (e.g., `Foo`) implement `Deref`. However, collections will usually dereference to a custom type. `[T]` and `str` have some