A few more mermaid newline fixes (#5752)

Akin to #5751, found in two other files.
This commit is contained in:
Jon Ross-Perkins
2025-06-30 22:43:03 +00:00
committed by GitHub
parent 0b53217372
commit 6966b1879d
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -58,9 +58,9 @@ standard library.
%%{init: {'themeVariables': {'fontFamily': 'monospace'}}}%%
graph BT
negation["-x"]
multiplication>"x * y<br>
multiplication>"x * y
x / y"]
addition>"x + y<br>
addition>"x + y
x - y"]
modulo["x % y"]
+1 -1
View File
@@ -59,7 +59,7 @@ graph BT
bitwise_and>"x & y"]
bitwise_or>"x | y"]
bitwise_xor>"x ^ y"]
shift["x << y<br>
shift["x << y
x >> y"]
bitwise_and & bitwise_or & bitwise_xor & shift --> complement
```