aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1b0d1e0..87d806b 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ import gleam/json.{object, string, array, int, null}
pub fn cat_to_json(cat: Cat) -> String {
object([
#("name", string(cat.name)),
- #("lives", int(cat.lives),
+ #("lives", int(cat.lives)),
#("flaws", null()),
#("nicknames", array(cat.nicknames, of: string)),
])