diff --git a/md_docs_tutorials_Cheatsheet.html b/md_docs_tutorials_Cheatsheet.html index b6b340a..6cd2624 100644 --- a/md_docs_tutorials_Cheatsheet.html +++ b/md_docs_tutorials_Cheatsheet.html @@ -104,7 +104,7 @@

Vectors

Here are all the available operations using Vector:

auto a = Vector<float>::of(1, 2, 3);
-
auto b = Vector<float>::of({2, 3, 4}); // a[i] == b[i];
+
auto b = Vector<float>::of({2, 3, 4});
a.size() // 3
a.dot(b) // 1 * 2 + 2 * 3 + 3 * 4 = 20