Skip to content

Commit

Permalink
docs: fix simple typo, joind -> joined (kz26#136)
Browse files Browse the repository at this point in the history
There is a small typo in pyexcelerate/Range.py.

Should read `joined` rather than `joind`.
  • Loading branch information
timgates42 authored Jul 15, 2021
1 parent 59d87c9 commit 29a63e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyexcelerate/Range.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# remove duplicates in collection by taking list(dict.fromkeys( collection ))
list(
OrderedDict.fromkeys(
# joind the items together so that ["","","A"] => "A", ["","R","Z"] => "RZ", ...
# joined the items together so that ["","","A"] => "A", ["","R","Z"] => "RZ", ...
map(
"".join,
# build iterator with all combination of 3 items in the list ["", "A", "B", ..., "Z"]
Expand Down

0 comments on commit 29a63e2

Please sign in to comment.