From a2a4e80337852a06e015377d5fb7030fb8befcba Mon Sep 17 00:00:00 2001 From: Aaron Powell Date: Fri, 24 Oct 2025 10:22:01 +1100 Subject: [PATCH] Fixing spelling mistake --- eng/constants.js | 4 ---- eng/update-readme.js | 4 ++-- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/eng/constants.js b/eng/constants.js index f8c2fed..9781b03 100644 --- a/eng/constants.js +++ b/eng/constants.js @@ -113,9 +113,6 @@ const AGENTS_DIR = path.join(ROOT_FOLDER, "agents"); const COLLECTIONS_DIR = path.join(ROOT_FOLDER, "collections"); const MAX_COLLECTION_ITEMS = 50; -// Backward compatibility export for typo (remove later) -const INSTRUCTIOSN_DIR = INSTRUCTIONS_DIR; - module.exports = { TEMPLATES, vscodeInstallImage, @@ -124,7 +121,6 @@ module.exports = { AKA_INSTALL_URLS, ROOT_FOLDER, INSTRUCTIONS_DIR, - INSTRUCTIOSN_DIR, // deprecated PROMPTS_DIR, CHATMODES_DIR, AGENTS_DIR, diff --git a/eng/update-readme.js b/eng/update-readme.js index f07279c..eb25ffb 100755 --- a/eng/update-readme.js +++ b/eng/update-readme.js @@ -14,11 +14,11 @@ const { vscodeInstallImage, vscodeInsidersInstallImage, ROOT_FOLDER, - INSTRUCTIOSN_DIR, PROMPTS_DIR, CHATMODES_DIR, AGENTS_DIR, COLLECTIONS_DIR, + INSTRUCTIONS_DIR, } = require("./constants"); // Add error handling utility @@ -761,7 +761,7 @@ try { const instructionsReadme = buildCategoryReadme( generateInstructionsSection, - INSTRUCTIOSN_DIR, + INSTRUCTIONS_DIR, instructionsHeader, TEMPLATES.instructionsUsage );