Skip to content

Commit dd39fd3

Browse files
committed
Fix typos
1 parent 1b8bf4c commit dd39fd3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_includes/js/keylog_processing.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ document.getElementById("pictureFile").addEventListener("change", function(){
2727

2828
reader.onerror = function (evt) {
2929
console.error("An error ocurred reading the pictureFile",evt);
30-
alert("An error ocurred reading while reading the file.");
30+
alert("An error occurred reading while reading the file.");
3131
};
3232

3333
reader.readAsDataURL(pictureFile);
@@ -63,7 +63,7 @@ tx.addEventListener("input", function OnInput() {
6363
// Constants taken from here:
6464
// https://github.com/qmk/qmk_firmware/blob/620a946d01477b64ee2f719141aa35400c0188c6/lib/python/qmk/constants.py#L22...L24
6565
const ROW_LETTERS = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnop'
66-
const COL_LETTERS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijilmnopqrstuvwxyz'
66+
const COL_LETTERS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
6767
// Taken from the length of ROW_LETTERS and COL_LETTERS
6868
const MAX_ROW = 52;
6969
const MAX_COL = 52;
@@ -377,7 +377,7 @@ document.getElementById("csvFile").addEventListener("change", function(){
377377
};
378378

379379
reader.onerror = function (evt) {
380-
console.error("An error ocurred reading the csvFile",evt);
380+
console.error("An error occurred reading the csvFile",evt);
381381
};
382382

383383
reader.readAsText(csvFile, "UTF-8");

0 commit comments

Comments
 (0)