Commit 2fb7108
authored
Fix extra quotation marks in the command section (erigontech#13038)
I noticed that there were extra quotation marks in the commands section,
specifically after the `--chain=sepolia` and `--port=30304` options
<img width="486" alt="Снимок экрана 2024-12-08 в 15 16 50"
src="https://github.com/user-attachments/assets/c789e769-f371-4ec8-a015-c24dc119ba66">
This caused a syntax issue when trying to execute the commands. The
unnecessary quotation marks have been removed to ensure the commands
work properly without errors.
Here is the corrected version:
```bash
--chain=sepolia \
--port=30304 \
```
This change is important because it prevents syntax errors that could
confuse users or lead to failed command executions.1 parent fbd369d commit 2fb7108
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
12 | | - | |
| 11 | + | |
| 12 | + | |
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| |||
0 commit comments