Skip to content

Commit b67a57b

Browse files
committed
Update README.md
1 parent 8ffbbd7 commit b67a57b

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
![Build](https://github.com/joowani/binarytree/workflows/Build/badge.svg)
44
![CodeQL](https://github.com/joowani/binarytree/workflows/CodeQL/badge.svg)
5-
[![codecov](https://codecov.io/gh/joowani/binarytree/branch/master/graph/badge.svg?token=B6sFAVxxsk)](https://codecov.io/gh/joowani/binarytree)
5+
[![codecov](https://codecov.io/gh/joowani/binarytree/branch/main/graph/badge.svg?token=B6sFAVxxsk)](https://codecov.io/gh/joowani/binarytree)
66
[![PyPI version](https://badge.fury.io/py/binarytree.svg)](https://badge.fury.io/py/binarytree)
77
[![GitHub license](https://img.shields.io/github/license/joowani/binarytree?color=brightgreen)](https://github.com/joowani/binarytree/blob/main/LICENSE)
88
![Python version](https://img.shields.io/badge/python-3.6%2B-blue)
99

1010
Are you studying binary trees for your next exam, assignment or technical interview?
1111

12-
**Binarytree** is Python library which lets you generate, visualize, inspect and
12+
**Binarytree** is a Python library which lets you generate, visualize, inspect and
1313
manipulate binary trees. Skip the tedious work of setting up test data, and dive
1414
straight into practising your algorithms! Heaps and BSTs (binary search trees) are
1515
also supported.
@@ -270,8 +270,7 @@ print(list(root)) # Equivalent to root.levelorder
270270
# [Node(1), Node(2), Node(3), Node(4), Node(5)]
271271
```
272272

273-
[List representations](https://en.wikipedia.org/wiki/Binary_tree#Arrays) are also
274-
supported:
273+
Convert to [list representations](https://en.wikipedia.org/wiki/Binary_tree#Arrays):
275274

276275
```python
277276
from binarytree import build

0 commit comments

Comments
 (0)