diff options
-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 |