We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b129766 commit fe034cfCopy full SHA for fe034cf
1 file changed
README.md
@@ -120,12 +120,12 @@ Chain a sequence of iterables:
120
>>>
121
```
122
123
-Warning : chain only unfold iterable containing ONLY iterables:
+Warning : chain only unfolds an iterable containing ONLY iterables:
124
125
```python
126
-[1, 2, [3]] | chain
+list([1, 2, [3]] | chain)
127
128
-Gives a `TypeError: chain argument #1 must support iteration`
+Gives a `TypeError: 'int' object is not iterable`
129
Consider using traverse.
130
131
0 commit comments