From e9489496249aaf31940c7906104ab1222f77447c Mon Sep 17 00:00:00 2001 From: lostd Date: Fri, 10 Oct 2014 14:59:30 +0300 Subject: [PATCH] Consistent comments capitalization --- noice.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/noice.c b/noice.c index c016d9ac..a0e98fcb 100644 --- a/noice.c +++ b/noice.c @@ -200,29 +200,29 @@ nextsel(int *cur, int max) switch (c) { case 'q': return SEL_QUIT; - /* back */ + /* Back */ case KEY_BACKSPACE: case KEY_LEFT: case 'h': return SEL_BACK; - /* inside */ + /* Inside */ case KEY_ENTER: case '\r': case KEY_RIGHT: case 'l': return SEL_GOIN; - /* filter */ + /* Filter */ case '/': case '&': return SEL_FLTR; - /* next */ + /* Next */ case 'j': case KEY_DOWN: case CONTROL('N'): if (*cur < max - 1) (*cur)++; break; - /* prev */ + /* Previous */ case 'k': case KEY_UP: case CONTROL('P'):