Skip to content

Commit c54bf27

Browse files
authored
Merge pull request #163 from orxfun/minor-fix-documentation
minor fix in documentation
2 parents ddb2d0b + 6e8330e commit c54bf27

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "orx-tree"
3-
version = "1.7.0"
3+
version = "1.7.1"
44
edition = "2024"
55
authors = ["orxfun <orx.ugur.arikan@gmail.com>"]
6-
description = "A beautiful tree 🌳 with convenient, efficient, parallelizable growth, mutation and features."
6+
description = "A beautiful tree 🌳 with convenient, efficient, parallelizable growth, mutation and traversal features."
77
license = "MIT OR Apache-2.0"
88
repository = "https://github.com/orxfun/orx-tree/"
99
keywords = ["tree", "data-structures", "traversal", "traverse", "binarytree"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![orx-tree crate](https://img.shields.io/crates/d/orx-tree.svg)](https://crates.io/crates/orx-tree)
55
[![orx-tree documentation](https://docs.rs/orx-tree/badge.svg)](https://docs.rs/orx-tree)
66

7-
A beautiful tree 🌳 with convenient, efficient, parallelizable growth, mutation and features.
7+
A beautiful tree 🌳 with convenient, efficient, parallelizable growth, mutation and traversal features.
88

99
## Tree Variants
1010

@@ -98,7 +98,7 @@ The tree naturally implements `IntoIterator`, [`Collection`](https://docs.rs/orx
9898
* `Parallelized over Tree using orx-parallel : 6.02s`
9999
* `Parallelized over Tree using rayon's par-bridge : 81.10s`
100100

101-
Remaining walks and traversals can be parallelized by simply by adding **_par** suffix to names of their sequential counterparts:
101+
Remaining walks and traversals can be parallelized simply by adding **_par** suffix to names of their sequential counterparts:
102102

103103
[`children_par`](https://docs.rs/orx-tree/latest/orx_tree/trait.NodeRef.html#method.children_par) |
104104
[`ancestors_par`](https://docs.rs/orx-tree/latest/orx_tree/trait.NodeRef.html#method.ancestors_par) |

0 commit comments

Comments
 (0)