瀏覽代碼

Change 'cannot' to 'can't'

Serj Kalichev 11 年之前
父節點
當前提交
6090622add
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      bin/clish.c

+ 2 - 2
bin/clish.c

@@ -230,7 +230,7 @@ int main(int argc, char **argv)
 		outfd = fopen("/dev/null", "w");
 	shell = clish_shell_new(&my_hooks, NULL, NULL, outfd, stop_on_error);
 	if (!shell) {
-		fprintf(stderr, "Cannot run clish.\n");
+		fprintf(stderr, "Can't run clish.\n");
 		goto end;
 	}
 	/* Load the XML files */
@@ -290,7 +290,7 @@ int main(int argc, char **argv)
 	/* Execute startup */
 	running = clish_shell_startup(shell);
 	if (running) {
-		fprintf(stderr, "Cannot startup clish.\n");
+		fprintf(stderr, "Can't startup clish.\n");
 		goto end;
 	}