Skip to content

Commit 53d1a90

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

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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)
@@ -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)