Skip to content

Commit

Permalink
Fix format error
Browse files Browse the repository at this point in the history
  • Loading branch information
Slackadays committed Dec 25, 2023
1 parent 7ef054e commit 1b37d76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mini2eq.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function generate_apo(data) {

q = q_setting(previous, data[i][0], next);

content = content.concat("Filter: " + (i + 1) + " ON PK Fc " + data[i][0] + " Hz Gain " + data[i][1] + " dB Q " + q + "\n");
content = content.concat("Filter " + (i + 1) + ": ON PK Fc " + data[i][0] + " Hz Gain " + data[i][1] + " dB Q " + q + "\n");
}
return content;
}
Expand Down

0 comments on commit 1b37d76

Please sign in to comment.