Skip to content

Commit d6a14a2

Browse files
howjmaydanceratopz
andauthored
fix(doc)s: fix misencoded newline in mermaid (#1723)
Co-authored-by: danceratopz <[email protected]>
1 parent 43e710c commit d6a14a2

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,25 @@ flowchart LR
2121
style H stroke:#F9A825,stroke-width:2px
2222
2323
subgraph "ethereum/go-ethereum, ..."
24-
C[<code>evm t8n</code>\nexternal executable]
24+
C[<code>evm t8n</code><br/>external executable]
2525
end
2626
2727
subgraph ethereum/solidity
28-
D[<code>solc</code>\nexternal executable]
28+
D[<code>solc</code><br/>external executable]
2929
end
3030
3131
subgraph ethereum/EIPs
32-
E(<code>EIPS/EIP-*.md</code>\nSHA digest via Github API)
32+
E(<code>EIPS/EIP-*.md</code><br/>SHA digest via Github API)
3333
end
3434
3535
subgraph "ethereum/execution-spec-tests"
36-
A(<code>./tests/**/*.py</code>\nPython Test Cases)
37-
B([<code>$ fill ./tests/</code>\nPython Framework])
36+
A(<code>./tests/**/*.py</code><br/>Python Test Cases)
37+
B([<code>$ fill ./tests/</code><br/>Python Framework])
3838
end
3939
4040
subgraph Test Fixture Consumers
4141
subgraph ethereum/hive
42-
G([<code>$ hive ...</code>\nGo Test Framework])
42+
G([<code>$ hive ...</code><br/>Go Test Framework])
4343
end
4444
H([Client executables])
4545
end

docs/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,25 @@ flowchart LR
1919
style H stroke:#F9A825,stroke-width:2px
2020
2121
subgraph ethereum/go-ethereum
22-
C[<code>evm t8n</code>\nexternal executable]
22+
C[<code>evm t8n</code><br/>external executable]
2323
end
2424
2525
subgraph ethereum/solidity
26-
D[<code>solc</code>\nexternal executable]
26+
D[<code>solc</code><br/>external executable]
2727
end
2828
2929
subgraph ethereum/EIPs
30-
E(<code>EIPS/EIP-*.md</code>\nSHA digest via Github API)
30+
E(<code>EIPS/EIP-*.md</code><br/>SHA digest via Github API)
3131
end
3232
3333
subgraph "ethereum/execution-spec-tests"
34-
A(<code>./tests/**/*.py</code>\nPython Test Cases)
35-
B([<code>$ fill ./tests/</code>\nPython Framework])
34+
A(<code>./tests/**/*.py</code><br/>Python Test Cases)
35+
B([<code>$ fill ./tests/</code><br/>Python Framework])
3636
end
3737
3838
subgraph Test Fixture Consumers
3939
subgraph ethereum/hive
40-
G([<code>$ hive ...</code>\nGo Test Framework])
40+
G([<code>$ hive ...</code><br/>Go Test Framework])
4141
end
4242
H([Client executables])
4343
end

docs/writing_tests/reference_specification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This check accomplished by adding the following two global variables anywhere in
4141
| Variable Name | Explanation |
4242
| ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
4343
| `REFERENCE_SPEC_GIT_PATH` | The relative path of the EIP markdown file in the [ethereum/EIPs](https://github.com/ethereum/EIPs/) repository, e.g. "`EIPS/eip-1234.md`" |
44-
| `REFERENCE_SPEC_VERSION` | The SHA hash of the latest version of the file retrieved from the Github API:<br>`https://api.github.com/repos/ethereum/EIPs/contents/EIPS/eip-<EIP Number>.md` |
44+
| `REFERENCE_SPEC_VERSION` | The SHA hash of the latest version of the file retrieved from the Github API:<br/>`https://api.github.com/repos/ethereum/EIPs/contents/EIPS/eip-<EIP Number>.md` |
4545

4646
## Running the `check_eip_versions` Command Locally
4747

0 commit comments

Comments
 (0)