Skip to content

Commit 9f3491d

Browse files
authored
fix: typo in comment (vuejs#14)
1 parent e3efd2b commit 9f3491d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snapshot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function fullCombination(arr) {
4242
// [0, 0, 0, 0, 1] = 0b0001
4343
// [1, 1, 1, 1, 1] = 0b1111
4444

45-
// Note we need to exclude the empty comination in our case
45+
// Note we need to exclude the empty combination in our case
4646
for (let i = 1; i < 1 << arr.length; i++) {
4747
const combination = []
4848
for (let j = 0; j < arr.length; j++) {

0 commit comments

Comments
 (0)