Explorar o código

fixed grammar mistake

Kajetan Johannes Hammerle %!s(int64=4) %!d(string=hai) anos
pai
achega
6b0ac15fb2
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      math/Vector.h

+ 1 - 1
math/Vector.h

@@ -21,7 +21,7 @@ public:
     Vector(float a, Args&&... args) {
         const int size = sizeof...(args) + 1;
         float init[size] = {a, args...};
-        static_assert(N == size, "vector size and amount of float arguments does not match");
+        static_assert(N == size, "vector size and amount of float arguments do not match");
         for(int i = 0; i < N; i++) {
             values[i] = init[i];
         }