Skip to content

Commit c2db477

Browse files
authored
Escape pipe character in tables
1 parent 59d0bc5 commit c2db477

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -638,14 +638,14 @@ In a nutshell Elm operators are _functions_ that take two arguments.
638638
|Operator|Description|Type hint|
639639
|--------|-----------|----------|
640640
|`&&`|logical and|`Bool -> Bool -> Bool`
641-
|`||`|logical or|`Bool -> Bool -> Bool`
641+
|`\|\|`|logical or|`Bool -> Bool -> Bool`
642642
|`not`|logical not|`Bool -> Bool`
643643
644644
#### Function Composition
645645
|Operator|Description|Type hint|
646646
|--------|-----------|----------|
647-
|`<|`|backward (pipe) function application `f <| x == f x`|`(a -> b) -> a -> b`
648-
|`|>`|forward (pipe) function application `x |> f == f x`|`a -> (a -> b) -> b`
647+
|`<\|`|backward (pipe) function application `f <\| x == f x`|`(a -> b) -> a -> b`
648+
|`\|>`|forward (pipe) function application `x \|> f == f x`|`a -> (a -> b) -> b`
649649
|`<<`|composes functions into one, arguments first applied to the function from the right side|`(b -> c) -> (a -> b) -> a -> c`
650650
|`>>`|same as before except arguments first applied to the function from the left side|`(a -> b) -> (b -> c) -> a -> c`
651651

0 commit comments

Comments
 (0)