about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-02-03 17:51:08 -0800
committerKartik K. Agaram <vc@akkartik.com>2022-02-03 17:51:08 -0800
commitf5be8e1955a1a0e0da4f1e15dfce9482671387f8 (patch)
tree40c878e2e1a0b9e28bd7475faa1d8e1aa8457d57 /src
parent02104952d20445e5b881452694b77df7dafea26d (diff)
downloadteliva-f5be8e1955a1a0e0da4f1e15dfce9482671387f8.tar.gz
prose typos and edits
Diffstat (limited to 'src')
-rw-r--r--src/kilo.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/kilo.c b/src/kilo.c
index 39b0489..8f361a1 100644
--- a/src/kilo.c
+++ b/src/kilo.c
@@ -147,7 +147,7 @@ char *Lua_HL_keywords[] = {
 struct editorSyntax LuaSyntax = {
     Lua_HL_keywords,
     "--",  /* line comment */
-    "--[[", "--]]",  /* multline comment */
+    "--[[", "--]]",  /* multiline comment */
     NULL, NULL  /* no selectables */
 };
 
@@ -432,8 +432,7 @@ static void editorFreeRow(erow *row) {
     free(row->hl);
 }
 
-/* Remove the row at the specified position, shifting the remaining on the
- * top. */
+/* Remove the row at the specified position, shifting the remaining up. */
 static void editorDelRow(int at) {
     erow *row;