From 74309439e791ebf1cee744874cb560bb082b5c61 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Mon, 31 Jul 2023 12:12:23 +1000 Subject: [PATCH] tweak --- getting-started/standard-library.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/getting-started/standard-library.md b/getting-started/standard-library.md index fc6f81c..16b90a7 100644 --- a/getting-started/standard-library.md +++ b/getting-started/standard-library.md @@ -65,13 +65,13 @@ This function expects an integer or float as the value for `self`. If `self` is below 0, this function returns -1. Otherwise if `self` is above 0, this function returns 1. Otherwise it returns 0. -### clamp(value, min, max) +### clamp(value, min, max): any This function expects integers or floats as the values for `value`, `min`, and `max`. If `value` is smaller than `min`, this function will return `min`. Otherwise, if `value` larget than `max`, it will return `max`. Otherwise, it will return `value`. -### lerp(start, end, amount) +### lerp(start, end, amount): any This function expects integers or floats as the values for `value`, `min`, and `max`.