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}`); } }