From e000c46c8c5a4f01027ce80e3343a80c0ddf08cc Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Tue, 17 Mar 2020 20:29:18 -0400 Subject: [PATCH] correct spelling --- lib/kokkos/containers/src/Kokkos_Vector.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/kokkos/containers/src/Kokkos_Vector.hpp b/lib/kokkos/containers/src/Kokkos_Vector.hpp index fb71f476c6..a44d1f58b5 100644 --- a/lib/kokkos/containers/src/Kokkos_Vector.hpp +++ b/lib/kokkos/containers/src/Kokkos_Vector.hpp @@ -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,