diff --git a/source/docs/str/join.rst b/source/docs/str/join.rst index 7525d52..61797c1 100644 --- a/source/docs/str/join.rst +++ b/source/docs/str/join.rst @@ -30,7 +30,7 @@ Example >>> ''.join(['A', 'B', 'C']) 'ABC' >>> ''.join({'A': 0, 'B': 0, 'C': 0}) # note that dicts are unordered -'ACB' +'ABC' >>> '-'.join(['A', 'B', 'C']) # '-' string is the seprator 'A-B-C'