chore: grammar and typos in .md files (#9632)

This commit is contained in:
wanderer163
2021-11-03 00:58:27 +05:30
committed by GitHub
parent 483217934c
commit 002ecc379f
7 changed files with 18 additions and 18 deletions

View File

@@ -509,7 +509,7 @@ class Foo {
```
## TypeScript optional parameters
**Do not** use optional parameters in IMPLEMENTATION files. This is because the TS compiler generates additional array and populates its from the **arguments** object. Still, it is OK to use these in a definition file (as declarations ONLY).
**Do not** use optional parameters in IMPLEMENTATION files. This is because the TS compiler generates additional array and populates it from the **arguments** object. Still, it is OK to use these in a definition file (as declarations ONLY).
*Right:*
```TypeScript