~samhh/writings

65cc83eed22e57661da17f20be9de01f6f7821a3 — Sam A. Horvath-Hunt 10 months ago a7e8932
Fix bad code snippet
1 files changed, 1 insertions(+), 1 deletions(-)

M published/20200330-js-fp-jargon.md
M published/20200330-js-fp-jargon.md => published/20200330-js-fp-jargon.md +1 -1
@@ 106,7 106,7 @@ Further, async/await is like a specialised form of Haskell's [do notation](https
f :: String -> IO Int
f x = do
    res <- getData x
    res * 2
    pure (res * 2)
```

```typescript