fix typo erroring -> erring (#202)

This commit is contained in:
石头 2020-12-28 23:32:41 +08:00 committed by GitHub
parent 5a0b58139d
commit 8f1983c982
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
* <li>Transformed - transforms each element added</li>
* <li>FixedSize - ensures that the size of the list cannot change</li>
* <li>Lazy - creates objects in the list on demand</li>
* <li>Growth - grows the list instead of erroring when set/add used with index beyond the list size</li>
* <li>Growth - grows the list instead of erring when set/add used with index beyond the list size</li>
* <li>SetUnique - a list that avoids duplicate entries like a Set</li>
* </ul>
*