From 06488d0046e17383050e842163af5ef61e5ea099 Mon Sep 17 00:00:00 2001 From: Stephen Leitnick Date: Mon, 11 Feb 2019 09:25:02 -0500 Subject: [PATCH] Fixed typo --- src/ReplicatedStorage/Aero/Shared/TableUtil.modulescript.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReplicatedStorage/Aero/Shared/TableUtil.modulescript.lua b/src/ReplicatedStorage/Aero/Shared/TableUtil.modulescript.lua index b89d418..e0f969f 100644 --- a/src/ReplicatedStorage/Aero/Shared/TableUtil.modulescript.lua +++ b/src/ReplicatedStorage/Aero/Shared/TableUtil.modulescript.lua @@ -52,7 +52,7 @@ FastRemove: - Removes an item from an array at a given index. Only ues this if you do + Removes an item from an array at a given index. Only use this if you do NOT care about the order of your array. This works by simply popping the last item in the array and overwriting the given index with the last item. This is O(1), compared to table.remove's O(n) speed.