From bc759a32e3a8e49db0521189eca7e393d3789177 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 1 Dec 2024 08:24:13 -0800 Subject: [PATCH] style: improve comment clarity in FileWatcher class --- aider/watch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/watch.py b/aider/watch.py index 6726041e4..f3a137907 100644 --- a/aider/watch.py +++ b/aider/watch.py @@ -172,7 +172,7 @@ class FileWatcher: if line_nums: ai_comments[fname] = comments - # feed the filenames and line numbers to TreeContext, like repomap does + # feed the filenames and line numbers to render TreeContext, like repomap does ai! res = "\n".join( comment for comments in ai_comments.values() if comments for comment in comments )