commit 3cba266d4d038ae0c48d993c81580e9fb8eb2f9b
parent cf8082f87f44ab8060a0a9c7ce904694901e7ff6
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Wed, 10 May 2006 03:40:17 +0000
comment fixes
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3488 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/browser.c b/src/browser.c
@@ -103,7 +103,7 @@ char *do_browser(char *path, DIR *dir)
check_statusblank();
/* Compute the line number we're on now, so that we don't divide
- * by 0. */
+ * by zero. */
fileline = selected;
if (width != 0)
fileline /= width;
@@ -559,7 +559,7 @@ void browser_refresh(void)
char *disp = display_string(tail(filelist[i]), 0, longest,
FALSE);
- /* Highlight the currently selected file/dir. */
+ /* Highlight the currently selected file or directory. */
if (i == selected)
wattron(edit, A_REVERSE);