Fix haskell error in example code block

Fix trivial error in documentation.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8620
GitOrigin-RevId: 1b8410ae213b1e5f0954bdf4e957d29f1a668696
This commit is contained in:
Antoine Leblanc 2023-04-04 13:27:08 +02:00 committed by hasura-bot
parent e9ae080d28
commit 0177510b8f

View File

@ -50,7 +50,7 @@ newtype Managed a = Managed (forall r . (a -> IO r) -> IO r)
With it, the above block of code can be rewritten as:
```haskell
main = do
main = runManaged do
loggers <- managed withLoggers
pgPool <- managed withPGPool
mssqlPool <- managed withMSSQLPool