From 4acf04c6829ffe7f57cf2997c4f9ccc956de9274 Mon Sep 17 00:00:00 2001 From: Ian Cowley <51410533+dufcrule@users.noreply.github.com> Date: Mon, 1 Jul 2024 17:30:18 +0200 Subject: [PATCH] fix: docs typo (#1401) Just fixes a very minor typo on this page. --- docs/rules/0140/reserved-words.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/0140/reserved-words.md b/docs/rules/0140/reserved-words.md index bfc9b54f3..b1ad6a228 100644 --- a/docs/rules/0140/reserved-words.md +++ b/docs/rules/0140/reserved-words.md @@ -16,7 +16,7 @@ This rule enforces that field names are not reserved words, as mandated in ## Details This rule looks at each field and complains if it the name is a reserved word -in a common programming lanaguge. +in a common programming language. Currently, the linter checks all the reserved words in Java, JavaScript, and Python 3. The exhaustive list of reserved words is found in [the code][].