From 429ef9b02e54dc6d61862824cfbaf40566b4fa6e Mon Sep 17 00:00:00 2001 From: Max Cahill <1bardesign@gmail.com> Date: Sun, 15 Mar 2020 20:41:39 +1100 Subject: [PATCH] [fixed] typo --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index a46e783..a3a8bfe 100644 --- a/readme.md +++ b/readme.md @@ -13,7 +13,7 @@ It's a bit of a grab bag of functionality, but quite extensively documented, and - `table` - Table handling extensions. - `stable_sort` - A stable sorting algorithm that is also, as a bonus, faster than table.sort under luajit. - `functional` - Functional programming facilities. `map`, `reduce`, `any`, `match`, `minmax`, `mean`... -- `sequence` - An oo wrapper on sequential tables so you can do `t:insert(i, v)` instead of `table.insert(t, i, v)`. Also supports the functional interfance. +- `sequence` - An oo wrapper on sequential tables so you can do `t:insert(i, v)` instead of `table.insert(t, i, v)`. Also supports chaining the functional interface above. - `vec2` - 2d vectors with method chaining, garbage saving interface. A bit of a mouthful at times. - `vec3` - 3d vectors as above. - `intersect` - 2d intersection routines, a bit sparse at the moment