From 36ab99f3e86ca3e955e7e5f43589b8cc135a6128 Mon Sep 17 00:00:00 2001 From: BillKek <51540758+BillKek@users.noreply.github.com> Date: Sun, 29 Jan 2023 01:46:18 +0300 Subject: [PATCH] Misspelling problem "not" is misspelled as "ont". Fixed. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 2ecf20ea..9d1105f3 100644 --- a/src/main.c +++ b/src/main.c @@ -91,7 +91,7 @@ int main(int argc, char **argv) const char *file_path = argv[1]; err = editor_load_from_file(&editor, file_path); if (err != 0) { - fprintf(stderr, "ERROR: Could ont read file %s: %s\n", file_path, strerror(err)); + fprintf(stderr, "ERROR: Could not read file %s: %s\n", file_path, strerror(err)); return 1; } }