modify example comments

This commit is contained in:
zhangfelix
2020-08-31 11:59:31 +08:00
parent 2662a1c1e2
commit 63c00aae79

View File

@ -19,5 +19,5 @@ def chunk(lst, size):
```
```py
chunk([1, 2, 3, 4, 5], 2) # [[1,2],[3,4],5]
chunk([1, 2, 3, 4, 5], 2) # [[1,2],[3,4],[5]]
```