From f4514fdd09eadef2958cad5b894c7af8521baf3f Mon Sep 17 00:00:00 2001 From: iampi31415 <202419735+iampi31415@users.noreply.github.com> Date: Mon, 9 Jun 2025 09:05:20 +0100 Subject: [PATCH] Fix(typo): 'though' should be 'through' --- 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 75e61dfc8..8835e6fab 100644 --- a/src/expressions/field-expr.md +++ b/src/expressions/field-expr.md @@ -54,7 +54,7 @@ r[expr.field.borrow] The fields of a struct or a reference to a struct are treated as separate entities when borrowing. If the struct does not implement [`Drop`] and is stored in a local variable, this also applies to moving out of each of its fields. -This also does not apply if automatic dereferencing is done though user-defined types other than [`Box`]. +This also does not apply if automatic dereferencing is done through user-defined types other than [`Box`]. ```rust struct A { f1: String, f2: String, f3: String }