Revert "Fixed typo in ES.22"

This reverts commit 976ee508a4.
This commit is contained in:
hsutter
2019-04-27 07:47:59 -07:00
parent 976ee508a4
commit 41b5bac211

View File

@@ -10644,7 +10644,7 @@ For initializers of moderate complexity, including for `const` variables, consid
##### Enforcement
* Flag declarations with default initialization that are not assigned to before they are first read.
* Flag declarations with default initialization that are assigned to before they are first read.
* Flag any complicated computation after an uninitialized variable and before its use.
### <a name="Res-list"></a>ES.23: Prefer the `{}` initializer syntax