For the latest technical information on 98.js.org products, you can also find answers at GitHub.
- From README articles in the repositories, to Troubleshooting that there arent any Wizards,
+ From README articles in the repositories, to Troubleshooting that there aren't any Wizards,
the repos on GitHub have the specific resources most likely to help you find the answer to your question.
To begin your search, go to Support Online.
diff --git a/programs/notepad/README.md b/programs/notepad/README.md
index 139684c8..d7d80aab 100644
--- a/programs/notepad/README.md
+++ b/programs/notepad/README.md
@@ -11,6 +11,6 @@ Try it [as part of 98](https://98.js.org/) or [standalone](https://98.js.org/pro
* Help > About Notepad
* Link back to 98 in case the app is opened standalone
-* Search (altho you can use the browser's Ctrl+F)
+* Search (although you can use the browser's Ctrl+F)
* Edit > Set Font
diff --git a/programs/notepad/src/app.js b/programs/notepad/src/app.js
index 0be28414..e03d2906 100644
--- a/programs/notepad/src/app.js
+++ b/programs/notepad/src/app.js
@@ -135,7 +135,7 @@ function load_from_blob(blob) {
function file_open() {
are_you_sure(function () {
// no accept='text/*' because it hides many many types of text files, especially source code
- // altho Notepad in Windows 98 shows only *.txt files
+ // although Notepad in Windows 98 shows only *.txt files
$("").click().change(function (e) {
if (this.files[0]) {
load_from_blob(this.files[0]);
@@ -219,7 +219,7 @@ if (file_path) {
throw error;
}
// NOTE: could be destroying changes, since this is (theoretically/potentially) async
- // altho the user can probably undo
+ // although the user can probably undo
// TODO: lock the textarea as readonly until here
$textarea.val(content);
update_print_helper();
diff --git a/programs/pipes/screensaver.js b/programs/pipes/screensaver.js
index 431920eb..89c20d12 100644
--- a/programs/pipes/screensaver.js
+++ b/programs/pipes/screensaver.js
@@ -540,7 +540,7 @@ function updateFromParametersInURL() {
params = null;
}
} catch (error) {
- alert("Invalid URL parameter JSON syntax\n\n" + error + "\n\nRecieved:\n" + paramsJSON);
+ alert("Invalid URL parameter JSON syntax\n\n" + error + "\n\nReceived:\n" + paramsJSON);
}
}
params = params || {};
diff --git a/programs/sound-recorder/src/app.js b/programs/sound-recorder/src/app.js
index 60f3728a..db2c1644 100644
--- a/programs/sound-recorder/src/app.js
+++ b/programs/sound-recorder/src/app.js
@@ -402,7 +402,7 @@ if (file_path) {
throw error;
}
// NOTE: could be destroying changes, since this is (potentially) async
- // altho the user can probably undo
+ // although the user can probably undo
// TODO: lock editing until here
var __opening_file_path = file_path;
var blob = new File([content], file_name_from_path(file_path));