From 0e5427f25178727f1ed4fabc29871782a0f24c2d Mon Sep 17 00:00:00 2001 From: ffrostfall <80861876+ffrostfall@users.noreply.github.com> Date: Wed, 11 Sep 2024 12:34:50 -0400 Subject: [PATCH] Fix typo Co-authored-by: vegorov-rbx <75688451+vegorov-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 0144a07..16dff2e 100644 --- a/docs/vector-library.md +++ b/docs/vector-library.md @@ -117,7 +117,7 @@ The buffer library could include functions to work with vectors, such as `buffer As per all additional globals, this creates a new global `vector`. This is a commonly used variable name, and many style guides will advise to avoid using `vector` as a variable name due to the global being added. -Introducing a vector library means introducing more globals. Due to the prescence of vectors in performance-intensive code, it can be assumed that the built-in functions will have fastcalls. This means more fastcall slots will be used. +Introducing a vector library means introducing more globals. Due to the presence of vectors in performance-intensive code, it can be assumed that the built-in functions will have fastcalls. This means more fastcall slots will be used. Existing code won't get any improvements from a built-in library. Developers will have to switch over to the built-in library in order to gain any benefit.