From 87789e4d07f3a648a22a0c285244d98d4ea1f785 Mon Sep 17 00:00:00 2001 From: James <5511220+Zamiell@users.noreply.github.com> Date: Wed, 26 Jul 2023 23:37:42 -0400 Subject: [PATCH] fix: grammar --- docs/src/rules/constructor-super.md | 2 +- docs/src/rules/no-dupe-class-members.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/rules/constructor-super.md b/docs/src/rules/constructor-super.md index 28052d0ac077..2a95a4802a9b 100644 --- a/docs/src/rules/constructor-super.md +++ b/docs/src/rules/constructor-super.md @@ -70,4 +70,4 @@ class A extends B { If you don't want to be notified about invalid/missing `super()` callings in constructors, you can safely disable this rule. -It's also safe to disable this rule when using TypeScript because [TypeScript's compiler enforces this check (`ts(2377)`)](https://github.com/Microsoft/TypeScript/blob/main/src/compiler/diagnosticMessages.json). +It is safe to disable this rule when using TypeScript because [TypeScript's compiler enforces this check (`ts(2377)`)](https://github.com/Microsoft/TypeScript/blob/main/src/compiler/diagnosticMessages.json). diff --git a/docs/src/rules/no-dupe-class-members.md b/docs/src/rules/no-dupe-class-members.md index a70d915b60d7..8a5529cfdd18 100644 --- a/docs/src/rules/no-dupe-class-members.md +++ b/docs/src/rules/no-dupe-class-members.md @@ -102,4 +102,4 @@ This rule should not be used in ES3/5 environments. In ES2015 (ES6) or later, if you don't want to be notified about duplicate names in class members, you can safely disable this rule. -It's also safe to disable this rule when using TypeScript because [TypeScript's compiler enforces this check (`ts(2393)`)](https://github.com/Microsoft/TypeScript/blob/main/src/compiler/diagnosticMessages.json). +It is safe to disable this rule when using TypeScript because [TypeScript's compiler enforces this check (`ts(2393)`)](https://github.com/Microsoft/TypeScript/blob/main/src/compiler/diagnosticMessages.json).