From 66d7e6c7daea2b6cf50f6cb230c7203ece0d8678 Mon Sep 17 00:00:00 2001 From: Marco Ieni <11428655+MarcoIeni@users.noreply.github.com> Date: Sat, 2 Oct 2021 11:52:00 +0200 Subject: [PATCH] deref: fix typo (#275) --- idioms/deref.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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