Skip to content

Commit 0cf706c

Browse files
Fix formatting in print_all_words docstring example
1 parent bf274c5 commit 0cf706c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/trie/trie.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def print_all_words(self) -> None:
339339
>>> trie.insert("a")
340340
>>> trie.insert("b")
341341
>>> trie.print_all_words()
342-
a b
342+
a b
343343
"""
344344

345345
def _print_words(node: Node, current_word: str) -> None:

0 commit comments

Comments
 (0)