Update README.md

fixed a typo: cna-> can
This commit is contained in:
acerjt 2024-09-24 16:09:24 +07:00 committed by GitHub
parent e236d7b388
commit 9044333766
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -68,7 +68,7 @@ int main(int argc, char *argv[]) {
char *user_input;
user_input = argv[1];
FILE *output_file = fopen("output.txt", "w");
fprintf(output_file, user_input); // The user input cna include formatters!
fprintf(output_file, user_input); // The user input can include formatters!
fclose(output_file);
return 0;
}