Commit 0429cd76586cecb81d322546ab686ce527eb8f83

Christian Weisgerber 2020-09-15T19:09:36

fix typo in error message

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/got/got.c b/got/got.c
index f09b051..fff8cb0 100644
--- a/got/got.c
+++ b/got/got.c
@@ -3604,7 +3604,7 @@ cmd_log(int argc, char *argv[])
 	if (diff_context == -1)
 		diff_context = 3;
 	else if (!show_patch)
-		errx(1, "-C reguires -p");
+		errx(1, "-C requires -p");
 
 	cwd = getcwd(NULL, 0);
 	if (cwd == NULL) {