From f10b2275ec3dce586e69d340e17a45d39c2ff013 Mon Sep 17 00:00:00 2001 From: ffrostfall <80861876+ffrostfall@users.noreply.github.com> Date: Mon, 9 Sep 2024 20:04:32 -0400 Subject: [PATCH] typo fix Co-authored-by: Varun Saini <61795485+vrn-sn@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 2bd2769..d9960d5 100644 --- a/docs/vector-library.md +++ b/docs/vector-library.md @@ -13,7 +13,7 @@ Currently, vectors are a primitive type implemented internally. All of the heavy The default metatable for vectors should now be the `vector` library. While buffers and coroutines do not have this, vectors likely should for ergonomics. Luau VM can be configured in two different vector value modes. -Default configuration uses vectors with 3 components (`xyz`) and if the `LUA_VECTOR_SIZE` configuration option is set to 4, vector values get an additional forth `w` component. +Default configuration uses vectors with 3 components (`xyz`) and if the `LUA_VECTOR_SIZE` configuration option is set to 4, vector values get an additional fourth `w` component. This mode will be referred to as '4-wide mode' in this proposal. ### Library functions & constants