summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 7004467..69d239b 100644
--- a/README.md
+++ b/README.md
@@ -156,7 +156,7 @@ char *content = read_entire_file("data.txt", &size);
if (content) {
printf("Read %zu bytes:\n%s\n", size, content);
- FREE(content); // Standard free (unless using arena)
+ free(content); // Standard free (unless using arena)
}
// Or read directly into a string builder