fix compact example

This commit is contained in:
Rohit Tanwar
2018-01-21 10:57:48 +05:30
parent 20a21a3551
commit 7439cc7e16

View File

@ -13,5 +13,5 @@ def compact(arr):
```
``` python
compact([0, 1, False, 2, '', 3, 'a', 's', 34]); // [ 1, 2, 3, 'a', 's', 34 ]
compact([0, 1, False, 2, '', 3, 'a', 's', 34]) # [ 1, 2, 3, 'a', 's', 34 ]
```