From a684128fee7e7c277e3130d58e858c1fec4d5765 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Ron=C4=8Devi=C4=87?= Date: Wed, 6 Sep 2023 13:22:38 +0200 Subject: [PATCH] Fix typos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: João Matos --- .../ast_node/expression/match_expression/analysis/duplicates.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway-core/src/semantic_analysis/ast_node/expression/match_expression/analysis/duplicates.rs b/sway-core/src/semantic_analysis/ast_node/expression/match_expression/analysis/duplicates.rs index df4c04dd46f..9d394af3f54 100644 --- a/sway-core/src/semantic_analysis/ast_node/expression/match_expression/analysis/duplicates.rs +++ b/sway-core/src/semantic_analysis/ast_node/expression/match_expression/analysis/duplicates.rs @@ -4,7 +4,7 @@ use sway_types::{Ident, Span, Spanned}; use crate::language::ty::{self, TyScrutinee}; -/// First tuple filed is `true` if the variable represented with [Span] is a struct field, otherwise `false`. +/// First tuple field is `true` if the variable represented with [Span] is a struct field, otherwise `false`. pub(crate) type MatchVariable = (bool, Span); pub(crate) struct MatchVariableDuplicate {