From 94139ffaf5a4377eecf337b35edb002a87c18ba4 Mon Sep 17 00:00:00 2001
From: Lilith Song <lsong@princessrtfm.com>
Date: Fri, 23 Aug 2024 06:53:09 -0400
Subject: [PATCH] fix a few typos in textmunge

---
 js/textmunge.browser.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/js/textmunge.browser.js b/js/textmunge.browser.js
index db1708e..1691f55 100644
--- a/js/textmunge.browser.js
+++ b/js/textmunge.browser.js
@@ -243,8 +243,8 @@
 		console.groupCollapsed("Help");
 		console.groupCollapsed("Basic Usage");
 		console.info("Call `initialise(<numberOfTextBoxes>)` (or `initialize` - both spellings do the same thing!) to reset the page and produce the given number of textareas, or just set `window.boxes` to a number. Calling `reset()` is the same as initialising to a single box.");
-		console.info("When changing the number of boxes on the page, the page is entirely cleared and brand new boxes are created, so all custom properties event handlers are lost!");
-		console.info("All textarea are tagged in the lower right corner with their ID - which is also defined as a global variable pair: `window.<id>` is the box with that ID.");
+		console.info("When changing the number of boxes on the page, the page is entirely cleared and brand new boxes are created, so all custom properties and event handlers are lost!");
+		console.info("All textareas are tagged in the lower right corner with their ID - which is also defined as a global variable: `window.<id>` is the box with that ID.");
 		console.info("Pressing CONTROL-S in a box will select all contents and copy them to the clipboard, and pressing CONTROL-D will clear it.");
 		console.groupEnd();
 		console.groupCollapsed("Automatic Input Handling");