Fix capitalization in ES.61 enforcement (#1350)

* Fix capitalization in ES.61 enforcement

* Fix grammar
This commit is contained in:
Amir Livneh 2019-02-27 09:39:09 -05:00 committed by Sergey Zubkov
parent 2056a14da7
commit 5190ea51a3

View File

@ -12060,8 +12060,8 @@ This example not only violates the [no naked `new` rule](#Res-new) as in the pre
##### Enforcement
* if the `new` and the `delete` is in the same scope, mistakes can be flagged.
* if the `new` and the `delete` are in a constructor/destructor pair, mistakes can be flagged.
* If the `new` and the `delete` are in the same scope, mistakes can be flagged.
* If the `new` and the `delete` are in a constructor/destructor pair, mistakes can be flagged.
### <a name="Res-arr2"></a>ES.62: Don't compare pointers into different arrays