diff --git a/src/installer.ts b/src/installer.ts
index 84c57c09..bc2f99f8 100644
--- a/src/installer.ts
+++ b/src/installer.ts
@@ -192,6 +192,7 @@ function findLtsVersionFromManifest(
 
   core.debug(`LTS alias '${alias}' for Node version '${versionSpec}'`);
 
+  // Supported formats are `lts/<alias>` and `lts/*`. Where asterisk means highest possible LTS.
   const release = alias === '*'
    ? candidates.find(x => !!x.lts && x.stable === stable)
    : candidates.find(x => x.lts?.toLowerCase() === alias && x.stable === stable);