Update README.md

This commit is contained in:
Rashad Gover 2022-09-20 06:44:59 -05:00 committed by GitHub
parent 9a1c088d0f
commit 9f55589519

View File

@ -22,7 +22,7 @@ main = run greet
greet = do
methodGET
pathParam @Text `is` "greet"
name <- pathParam @Text
name <- pathParam
pathEnd
return $ setPlaintext ("Hello " <> name <> "! I'm Okapi.") $ ok
```