From 47b381c3dcb40cb4459dac9c92c5da7a3662df6e Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Tue, 9 Mar 2021 16:44:48 +0800 Subject: [PATCH] update doc --- docs/lib3x-hashset.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/lib3x-hashset.md b/docs/lib3x-hashset.md index c169a02b..d101c2d7 100644 --- a/docs/lib3x-hashset.md +++ b/docs/lib3x-hashset.md @@ -2,7 +2,7 @@ This function models the mathematical set, backed by a hash table. You can use the following to process the returned set. -- [util/set/hashset_add](https://openhome.cc/eGossip/OpenSCAD/lib3x-hashset_add.html) : Add an element to the set. It returns a new set. +- [util/set/hashset_add](https://openhome.cc/eGossip/OpenSCAD/lib3x-hashset_add.html) : Adds an element to the set. It returns a new set. - [util/set/hashset_has](https://openhome.cc/eGossip/OpenSCAD/lib3x-hashset_has.html) : Returns `true` if the set contains the specified element. - [util/set/hashset_del](https://openhome.cc/eGossip/OpenSCAD/lib3x-hashset_del.html) : Deletes the specified element. It returns a new set. - [util/set/hashset_len](https://openhome.cc/eGossip/OpenSCAD/lib3x-hashset_len.html) : Returns the length of the set.