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).