Skip to content

Commit d25392e

Browse files
committed
swap from list to regular text since it seems github pages do not currently support markdown lists
1 parent fdf4555 commit d25392e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/docs/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ The Linter follows the following basic steps when it is run on a file:
1919

2020
``` mermaid
2121
graph TD
22-
start[1. User initiates linting of file or files] --> run-linter-rules
23-
run-linter-rules[2. If file is not ignored, run Linter rules and Custom Commands*] --> handle-error
22+
start[User initiates linting of file or files] --> run-linter-rules
23+
run-linter-rules[If file is not ignored, run Linter rules and Custom Commands*] --> handle-error
2424
handle-error{Did an error happen?} -- No --> update-file
2525
handle-error -- Yes --> log-error
2626
log-error[3. Display error and log to dev console] --> done
27-
update-file[3. Update file contents**] --> done
27+
update-file[Update file contents**] --> done
2828
done[Done]
2929
```
3030

3131
!!! Note
3232
*Currently custom commands only run when a single file is linted.
3333

3434
**This is a bit of a simplification as the file is updated after running Linter rules, but before Custom Commands run
35-
if no error has ocurred.
35+
if no error has occurred.
3636

3737
### 1. User Initiates Linting of File or Files
3838

0 commit comments

Comments
 (0)