From 2fb2f73cfbe19e3a7a26b40adff93800527a835a Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 27 Sep 2024 11:01:19 +0100 Subject: [PATCH] Improved code comment --- TypeScript/6ReferenceAnotherClass/src/mod.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TypeScript/6ReferenceAnotherClass/src/mod.ts b/TypeScript/6ReferenceAnotherClass/src/mod.ts index 81a37fa..4a0c334 100644 --- a/TypeScript/6ReferenceAnotherClass/src/mod.ts +++ b/TypeScript/6ReferenceAnotherClass/src/mod.ts @@ -17,7 +17,7 @@ class Mod implements IPostSptLoadMod // call the function 'getTheWordFlub()' and assign the result to 'result' const result = moreCode.getTheWordFlub(); - // log the 'myProperty' property to the console + // log the result of running getTheWordFlub() from the other class logger.info(`Here is the value from my second class: ${result}`); } }