Update release.md

This commit is contained in:
Rashad Gover 2022-08-25 16:11:20 -05:00 committed by GitHub
parent faf8d3e8ee
commit 0cf1fc40e1

View File

@ -249,4 +249,10 @@ There are two types of URLs that you can generate with Okapi:
```haskell
data RelURL = RelURL Path Query
data AbsURL = AbsURL Scheme Host (Maybe Port) RelURL
renderRelURL :: RelURL -> Text
renderAbsURL :: AbsURL -> Text
blogRouteCategoryURL = renderRelURL $ BlogRouteCategory "fiction"
```