From f9d8b81b1abe83f87d89f8030d3273a537e29c62 Mon Sep 17 00:00:00 2001 From: Randy Jordan Date: Sun, 8 Mar 2026 16:28:12 -0500 Subject: [PATCH] README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d80026f..2ff579c 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Simple string interning library. Interning strings will optimize memory usage an - [License](#license) ## Features -`atom_string(const char *str)`: Interns a string and returns a pointer to the interned string. It is automatically converted to a string if given an argument of type const char *.
+`atom_string(const char *str)`: Interns a string and returns a pointer to the interned string.
`atom_int(int64_t n)`: Converts an integer to its string representation and interns it. Useful for handling numeric strings efficiently. ## Usage