Skip to content

Commit

Permalink
docs: Update docstring examples
Browse files Browse the repository at this point in the history
  • Loading branch information
kayjan committed Jun 1, 2024
1 parent ca20716 commit c082751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bigtree/tree/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def find_relative_path(tree: NodeT, path_name: str) -> NodeT:
- If path name starts with leading separator symbol, it will start at root node.
Examples:
>>> from bigtree import find_relative_path, str_to_tree
>>> from bigtree import Node, find_relative_path
>>> root = Node("a", age=90)
>>> b = Node("b", age=65, parent=root)
>>> c = Node("c", age=60, parent=root)
Expand Down

0 comments on commit c082751

Please sign in to comment.