Skip to content

Commit 4d3acc3

Browse files
📚 docs(README): Add missing import statement to code sample.
1 parent 2c14f26 commit 4d3acc3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ See [docs](https://computational-combinatorics.github.io/n-combinations/index.ht
1010
1111
```js
1212
import {combinations} from '@combinatorics/n-combinations';
13-
1413
combinations("ABCD", 2); // AB AC AD BC BD CD
14+
15+
import {range} from '@iterable-iterator/range';
1516
combinations(range(4), 3); // 012 013 023 123
1617
```
1718

0 commit comments

Comments
 (0)