From 48f6516428679c6240ed996e53c14b8c3f492f1a Mon Sep 17 00:00:00 2001 From: Lunarmagpie Date: Fri, 3 Mar 2023 16:46:04 -0500 Subject: fix syntax error in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)), ]) -- cgit v1.2.3