Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
fixed a typo: cna-> can
  • Loading branch information
acerjt authored Sep 24, 2024
1 parent e236d7b commit 9044333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binary-exploitation/format-strings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 9044333

Please sign in to comment.