소스 검색

fixed grammar mistake

Kajetan Johannes Hammerle 3 년 전
부모
커밋
6b0ac15fb2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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];
         }