Skip to content

Commit a72044e

Browse files
committed
Minor rewording of the docstring.
1 parent 7b9b5c3 commit a72044e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jsonschema/_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@ def uniq(container):
211211
"""
212212
Check if all of a container's elements are unique.
213213
214-
Successively tries first to rely that the elements are being sortable
215-
and finally falls back on brute force.
214+
Tries to rely on the container being recursively sortable, or otherwise
215+
falls back on (slow) brute force.
216216
"""
217217
try:
218218
sort = sorted(unbool(i) for i in container)

0 commit comments

Comments
 (0)