diff --git a/haskell/01-expressions/README.md b/haskell/01-expressions/README.md index 2608428..d995c24 100644 --- a/haskell/01-expressions/README.md +++ b/haskell/01-expressions/README.md @@ -7,7 +7,7 @@ The following illustrates some haskell basics. It can be reproduced using `ghci` Expression | Type (:t) | Value | Comment --- | --- | --- | -------- `2` | `Num a => a` | `2` | -`2.03` | `Fractional a => a` | `2.3` | +`2.03` | `Fractional a => a` | `2.03` | `'c'` | `Char` | `'c'` `"hallo"` | `String` | `"hallo"` | `True` | `Bool` | `True` |