From fc46660c56ae4f29632d9f7281cee75851021d74 Mon Sep 17 00:00:00 2001 From: Orion Kindel Date: Sat, 1 Mar 2025 16:43:19 -0600 Subject: [PATCH] docs: readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 708b7b2..fd362fb 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ getPersonAddress _ (Path id) = ... `POST /persons` accepting a json body: ```purs -type Person = {firstName: String, lastName: String, age: Maybe Int} +type Person = { firstName :: String, lastName :: String, age :: Maybe Int } postPerson :: Post -> Path "persons" Unit -> ContentType Json -> Json Person -> Aff Response postPerson _ _ person = ...