correct spelling

This commit is contained in:
Axel Kohlmeyer 2020-03-17 20:29:18 -04:00 committed by GitHub
parent 649a8cc01a
commit e000c46c8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@ public:
void assign (size_t n, const Scalar& val) {
/* Resize if necessary (behaviour of std:vector) */
/* Resize if necessary (behavior of std:vector) */
if(n>span())
DV::resize(size_t (n*_extra_storage));
@ -177,7 +177,7 @@ public:
const_reference back() const {return DV::h_view(_size - 1);}
/* std::algorithms witch work originally with iterators, here they are implemented as member functions */
/* std::algorithms which work originally with iterators, here they are implemented as member functions */
size_t
lower_bound (const size_t& start,