From 3f2e8b48fefa0a83c881823978d5849cb79cfb92 Mon Sep 17 00:00:00 2001 From: ffrostfall <80861876+ffrostfall@users.noreply.github.com> Date: Mon, 9 Sep 2024 20:04:14 -0400 Subject: [PATCH] Fix typo Co-authored-by: dcope-rbx <91100513+dcope-rbx@users.noreply.github.com> --- docs/vector-library.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/vector-library.md b/docs/vector-library.md index 5cac6d7..2bd2769 100644 --- a/docs/vector-library.md +++ b/docs/vector-library.md @@ -111,7 +111,7 @@ A new primitive `vector` type should be added to the type system. A better vector constructor with new syntax, such as `` or `(x, y, z)` or `|x, y, z|` or `vector(x, y, z)` or `[x, y, z]` could be implemented. This would make code that does stuff with vectors much less verbose. -The buffer library could include functions to work with vectors, such as `buffer.writevector2`, `buffer.writevector3`, and in 4-wide mode, `buffer.writevector4`. The corrosponding read functions would of course be included. +The buffer library could include functions to work with vectors, such as `buffer.writevector2`, `buffer.writevector3`, and in 4-wide mode, `buffer.writevector4`. The corresponding read functions would of course be included. ## Drawbacks