From 08b97f94ccd3c2c835aae402664340894587e39d Mon Sep 17 00:00:00 2001 From: kklibo Date: Thu, 12 Jan 2023 09:16:21 -0800 Subject: [PATCH] Update field-expr.md trivial grammar fix --- src/expressions/field-expr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/expressions/field-expr.md b/src/expressions/field-expr.md index 93777b3a7..11c2d3d3d 100644 --- a/src/expressions/field-expr.md +++ b/src/expressions/field-expr.md @@ -37,7 +37,7 @@ foo().x; ## Automatic dereferencing If the type of the container operand implements [`Deref`] or [`DerefMut`][`Deref`] depending on whether the operand is [mutable], it is *automatically dereferenced* as many times as necessary to make the field access possible. -This processes is also called *autoderef* for short. +This process is also called *autoderef* for short. ## Borrowing