Skip to content

Commit

Permalink
Fix operation linting
Browse files Browse the repository at this point in the history
  • Loading branch information
GCHQ 77703 committed Feb 19, 2019
1 parent 44a164e commit 822a4fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/operations/GenerateDeBruijnSequence.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class GenerateDeBruijnSequence extends Operation {
}
return;
}

a[t] = a[t - p];
db(t + 1, p);
for (let j = a[t - p] + 1; j < k; j++) {
Expand Down

0 comments on commit 822a4fa

Please sign in to comment.