From: btea <2356281422@qq.com> Date: Wed, 1 Dec 2021 11:54:51 +0000 (-0600) Subject: fix: typo in comment (#14) X-Git-Tag: v3.0.0~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f3491dbcf6176307966cb0c209ebb8b7c44233c;p=thirdparty%2Fvuejs%2Fcreate-vue.git fix: typo in comment (#14) --- diff --git a/snapshot.js b/snapshot.js index 2e47061a..2a1dac74 100644 --- a/snapshot.js +++ b/snapshot.js @@ -42,7 +42,7 @@ function fullCombination(arr) { // [0, 0, 0, 0, 1] = 0b0001 // [1, 1, 1, 1, 1] = 0b1111 - // Note we need to exclude the empty comination in our case + // Note we need to exclude the empty combination in our case for (let i = 1; i < 1 << arr.length; i++) { const combination = [] for (let j = 0; j < arr.length; j++) {