Skip to content

Commit 751971a

Browse files
authored
[docs] Fix pipe rendering in markdown table (#4625)
1 parent be64e08 commit 751971a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/explanations/operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Chisel defines a set of hardware operators:
3333
| **Logical Operations** | **Valid on:** Bool
3434
| `val sleep = !busy` | Logical NOT |
3535
| `val hit = tagMatch && valid` | Logical AND |
36-
| `val stall = src1busy || src2busy` | Logical OR |
36+
| `val stall = src1busy \|\| src2busy` | Logical OR |
3737
| `val out = Mux(sel, inTrue, inFalse)` | Two-input mux where sel is a Bool |
3838
| **Arithmetic operations** | **Valid on Nums:** SInt and UInt. |
3939
| `val sum = a + b` *or* `val sum = a +% b` | Addition (without width expansion) |

0 commit comments

Comments
 (0)