Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #332

Merged
merged 1 commit into from
Dec 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/bigtree/tree/modify.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ All other methods calls these 2 methods directly.
| Default | "/a/e" | None | Delete node `e` |
| skippable | "/a/c" | "/a/b/c" | Shift/copy node `c`, skip if "/a/c" cannot be found |

---

![Advanced Shift Example](https://github.com/kayjan/bigtree/raw/master/assets/docs/modify_advanced.png "Advanced Shift Example")

### Sample Tree Modification (Advanced)
Expand All @@ -75,7 +77,7 @@ All other methods calls these 2 methods directly.
| merge_children | "a/b/c" | "a/d/c" | **If path not present**: Shift/copy children of node `c` to be children of node `d`, removing node `c`<br>**If path present**: Shift/copy children of node `c` to be merged with existing "a/d/c" children |
| merge_children + overriding | "a/b/c" | "a/d/c" | **If path not present**: Behaves like merge_children<br>**If path present**: Behaves like overriding |
| merge_leaves | "a/b/c" | "a/d/c" | **If path not present**: Shift/copy leaves of node `c` to be children of node `d`<br>**If path present**: Shift/copy leaves of node `c` to be merged with existing "a/d/c" children |
| - merge_leaves + overriding | "a/b/c" | "a/d/c" | **If path not present**: Behaves like merge_leaves<br>**If path present**: Behaves like overriding, but original node `c` remains |
| merge_leaves + overriding | "a/b/c" | "a/d/c" | **If path not present**: Behaves like merge_leaves<br>**If path present**: Behaves like overriding, but original node `c` remains |
| delete_children | "a/b" | "a/d/b" | Shift/copy node `b` only without any node `b` children |

-----
Expand Down
Loading