From eca8cc61accfff9fa0f96ea7cd3fcdad74073d46 Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Wed, 18 Dec 2024 11:06:48 -0800 Subject: [PATCH] Fixes --- src/core/Cline.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Cline.ts b/src/core/Cline.ts index d564ac489a..bf58f79be3 100644 --- a/src/core/Cline.ts +++ b/src/core/Cline.ts @@ -795,7 +795,7 @@ export class Cline { try { const ruleFileContent = (await fs.readFile(clineRulesFilePath, "utf8")).trim() if (ruleFileContent) { - clineRulesFileInstructions = `# .clinerules\n\nThe following instructions are provided by a root-level .clinerules file where the user has specified instructions for this working directory (${cwd.toPosix()})\n\n${ruleFileContent}` + clineRulesFileInstructions = `# .clinerules\n\nThe following is provided by a root-level .clinerules file where the user has specified instructions for this working directory (${cwd.toPosix()})\n\n${ruleFileContent}` } } catch { console.error(`Failed to read .clinerules file at ${clineRulesFilePath}`)