prose typos and edits

This commit is contained in:
Kartik K. Agaram 2022-02-03 17:51:08 -08:00
parent 02104952d2
commit f5be8e1955
1 changed files with 2 additions and 3 deletions

View File

@ -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;