Removed anti-CamelCase comments. (#1632)

The comments were:
// ???Must we suffer CaMelcAse???
and
// ugly CaMeLcAsEvArIaBlE
This commit is contained in:
Anthony Cassidy 2020-06-05 06:19:47 +12:00 committed by GitHub
parent 4867a5c2d3
commit 9efcaf07f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10688,7 +10688,7 @@ Readability. Limit the scope in which a variable can be used. Don't risk used-be
##### Example, bad
SomeLargeType var; // ugly CaMeLcAsEvArIaBlE
SomeLargeType var;
if (cond) // some non-trivial condition
Set(&var);
@ -20956,7 +20956,7 @@ Most of the concepts below are defined in [the Ranges TS](http://www.open-std.or
* `String` // ???
* `Number` // ???
* `Sortable`
* `EqualityComparable` // ???Must we suffer CaMelcAse???
* `EqualityComparable`
* `Convertible`
* `Common`
* `Boolean`