Skip to content

Commit 6390108

Browse files
authored
snakeCase
1 parent 2f4b5a6 commit 6390108

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ let digits = Iterator.concat(lows, [4, 5], highs);
5959
For the (rare) case of infinite iterators of iterators, use [`Iterator.prototype.flatMap`](https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-iterator.prototype.flatmap) with the identity function.
6060

6161
```js
62-
function* self_counting_sequence_helper() {
62+
function* selfCountingSequenceHelper() {
6363
for (let n = 1;; ++n) {
6464
yield Array(n).fill(n);
6565
}
6666
}
67-
let self_counting_sequence = self_counting_sequence_helper().flatMap(x => x)
67+
let selfCountingSequence = selfCountingSequenceHelper().flatMap(x => x)
6868
```
6969

7070
## prior art

0 commit comments

Comments
 (0)