From 5e2e6c2cfe25daecfccf76dc5d252916631956dc Mon Sep 17 00:00:00 2001 From: ffrostfall <80861876+ffrostfall@users.noreply.github.com> Date: Mon, 9 Sep 2024 12:50:27 -0400 Subject: [PATCH] Update docs/vector-library.md 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 199fd2f..0a68190 100644 --- a/docs/vector-library.md +++ b/docs/vector-library.md @@ -54,7 +54,7 @@ Applies `math.abs` component-wise for each vector. Equivalent of: `vector(math.a `vector.sign(vec: vector): vector` -Applies `math.sign` component-wise for each vector. Equivalent of: `vector(math.sign(vec.x), etc)`. +Applies `math.sign` component-wise for each vector. Equivalent of: `vector.create(math.sign(vec.x), etc)`. `vector.clamp(vec: vector, min: vector, max: vector): vector`