浏览代码

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];
         }