about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
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;