Skip to content

Commit

Permalink
Check spelling
Browse files Browse the repository at this point in the history
I was big on the short form "altho", although I can go with the flow.
  • Loading branch information
1j01 committed Jun 30, 2024
1 parent 9fd940e commit cfb2a2e
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Features:
* Drop files onto the desktop, and they'll be stored in a virtual filesystem
* Load Windows themes! Many are included in the Themes folder on the desktop.
* Easter eggs (try a famous cheat code 😉)
* Meticulous detail in many areas (altho there's obviously lots "missing")
* Meticulous detail in many areas (although there's obviously lots "missing")
* **Help > Help Topics** in Paint, Sound Recorder, Notepad, and Minesweeper
* You can add the site to your homescreen on mobile

Expand Down
17 changes: 17 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"allowfullscreen",
"Andrey",
"anypalette",
"appdata",
"ASEC",
"ASECH",
"asyncify",
Expand Down Expand Up @@ -80,6 +81,7 @@
"Butterchurn's",
"buttonface",
"buttonhighlight",
"callout",
"candycane",
"Catmull",
"catmullrom",
Expand All @@ -106,6 +108,7 @@
"Cpath",
"Crect",
"Csvg",
"DABJDKT",
"dealio",
"decompiled",
"dectree",
Expand Down Expand Up @@ -144,6 +147,7 @@
"Flickr",
"fliph",
"flipv",
"fname",
"focusables",
"forw",
"fsex",
Expand All @@ -169,6 +173,7 @@
"humbnails",
"icns",
"idempotency",
"iefix",
"IEJIT",
"iframe",
"iframe's",
Expand All @@ -191,6 +196,7 @@
"keyshortcuts",
"Konami",
"labelledby",
"Lanczos",
"LEFTMARGIN",
"lete",
"libtess",
Expand Down Expand Up @@ -232,6 +238,7 @@
"Muzychenko",
"MYCOMP",
"MYNETWORK",
"mysizeanddepth",
"Nand",
"nbsp",
"ncrease",
Expand Down Expand Up @@ -260,8 +267,10 @@
"peggys",
"persp",
"Phong",
"Potrace",
"POWE",
"Prankily",
"precomposed",
"precompute",
"prettierignore",
"proch",
Expand All @@ -278,6 +287,7 @@
"ratconst",
"Ratpack",
"ratpak",
"realfavicongenerator",
"RECYCLERFULL",
"redbluewhite",
"rehovered",
Expand All @@ -287,6 +297,7 @@
"repos",
"resizer",
"rewd",
"Ringout",
"RJSPBS",
"Roadmap",
"ROLC",
Expand All @@ -308,6 +319,7 @@
"scrollbars",
"SCRSAVE",
"seedrandom",
"Shdr",
"Shelbi",
"SHIDI",
"Skia",
Expand Down Expand Up @@ -342,6 +354,8 @@
"themeui",
"THISDIRNAME",
"THISDIRPATH",
"threejs",
"Tilewallpaper",
"TITLEBAR",
"topich",
"TOPMARGIN",
Expand All @@ -363,9 +377,11 @@
"unpause",
"urlresult",
"USERFILES",
"userprofile",
"valign",
"vaporwave",
"verdana",
"viewports",
"vinext",
"viprev",
"virtualdesktop",
Expand All @@ -382,6 +398,7 @@
"webglcontextlost",
"Whippin",
"winamp",
"Windir",
"WINDOWS",
"windowtext",
"winerror",
Expand Down
2 changes: 1 addition & 1 deletion help/online_support.htm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</li>
<li>
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 <small>that there arent any</small> Wizards,
From README articles in the repositories, to Troubleshooting <small>that there aren't any</small> 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 <a href="https://github.com/1j01/98" target="_blank">Support Online</a>.
</li>
Expand Down
2 changes: 1 addition & 1 deletion programs/notepad/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <kbd>Ctrl+F</kbd>)
* Search (although you can use the browser's <kbd>Ctrl+F</kbd>)

* Edit > Set Font
4 changes: 2 additions & 2 deletions programs/notepad/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
$("<input type='file'>").click().change(function (e) {
if (this.files[0]) {
load_from_blob(this.files[0]);
Expand Down Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion programs/pipes/screensaver.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 || {};
Expand Down
2 changes: 1 addition & 1 deletion programs/sound-recorder/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit cfb2a2e

Please sign in to comment.