Skip to content

Commit afa6445

Browse files
committed
Fix typos in README.
1 parent e7277f0 commit afa6445

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@
1212

1313
A PHP implementation of tree data structure.
1414

15-
This library provides 4 different trees implementations.
16-
* **Node**: The base class
15+
It provides 4 different trees implementations.
16+
* **Node**: The base class.
1717
* **N-ary node**: (or K-ary tree) extends the base class and allows you to specify the capacity of a node, the maximum children a node can have.
1818
* **Value node**: extends the N-ary node and allows you to attach a value to the node.
1919
* **KeyValue node**: extends the Value node and allows you to attach a key and a value to the node.
2020

21-
This library provides [4 trees traversals algorithm](https://en.wikipedia.org/wiki/Tree_traversal) that works for most types of trees.
22-
* In order:
21+
It also provides [4 trees traversals algorithm](https://en.wikipedia.org/wiki/Tree_traversal):
22+
* In order
2323
* Post order
2424
* Pre order
2525
* Breadth first
2626

27-
This library also provides 1 converter for the [graphp/graphp](https://github.com/graphp/graph) library.
27+
And it provides 1 converter for the [graphp/graphp](https://github.com/graphp/graph) library.
2828

2929
## Documentation
3030

0 commit comments

Comments
 (0)