diff options
author | Malfurious <m@lfurio.us> | 2025-03-24 00:52:23 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2025-03-24 00:52:23 -0400 |
commit | 851cf3984be98af095de84692ff78d99e4aa6e15 (patch) | |
tree | ac63a0b34128a75f62d6938d66bf760f5f087be3 | |
parent | ff2e7a6d219643ffe6fad0b4988305c90e846437 (diff) | |
download | nsploit-851cf3984be98af095de84692ff78d99e4aa6e15.tar.gz nsploit-851cf3984be98af095de84692ff78d99e4aa6e15.zip |
lict: Fix typo in class docstring
Signed-off-by: Malfurious <m@lfurio.us>
-rw-r--r-- | nsploit/types/lict.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nsploit/types/lict.py b/nsploit/types/lict.py index ab6cb1f..d31d3fc 100644 --- a/nsploit/types/lict.py +++ b/nsploit/types/lict.py @@ -9,7 +9,7 @@ class Lict(MutableSequence, MutableMapping): int and slice. Keys may be any other type except for None, as None indicates an unkeyed value. - Nearly all of the operations you'd except to perform on list or dict are + Nearly all of the operations you'd expect to perform on a list or dict are implemented here. However, in cases of conflict, the list behavior is usually preferred (for example: iter(Lict) iterates over values instead of keys). In general, Licts are slightly more list-like, since keys are |