From 9044333766bf7a405d60eaf1473e39471f7b95df Mon Sep 17 00:00:00 2001 From: acerjt <38390343+acerjt@users.noreply.github.com> Date: Tue, 24 Sep 2024 16:09:24 +0700 Subject: [PATCH] Update README.md fixed a typo: cna-> can --- binary-exploitation/format-strings/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binary-exploitation/format-strings/README.md b/binary-exploitation/format-strings/README.md index ec4d33e51..13fb590d6 100644 --- a/binary-exploitation/format-strings/README.md +++ b/binary-exploitation/format-strings/README.md @@ -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; }