Fix spelling

This commit is contained in:
Frank Galligan 2017-10-25 09:00:34 -07:00
parent a98b69f1f0
commit e00aab9690

View File

@ -94,7 +94,7 @@ represented using the notation `A == B` and is specified to mean the same as
`A != B` and is specified to mean the same as `A != B` and is specified to mean the same as
`(A[ 0 ] != B[ 0 ] || A[ 1 ] != B[ 1 ])`. `(A[ 0 ] != B[ 0 ] || A[ 1 ] != B[ 1 ])`.
Unless otherwise noted, array element assignment will increase the size of the array to include the element. Any remaining new elments will be uninitialized. Unless otherwise noted, array element assignment will increase the size of the array to include the element. Any remaining new elements will be uninitialized.
The functions `assign`, `back`, `empty`, `pop_back`, `push_back`, and `size` behave The functions `assign`, `back`, `empty`, `pop_back`, `push_back`, and `size` behave
similarly on arrays as it is defined for c++ std::vector. similarly on arrays as it is defined for c++ std::vector.