Skip to content

Commit 3f916fd

Browse files
fix: fix md numbering syntax
1 parent 958d281 commit 3f916fd

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/internals/tools/certify.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
Certify tool is responsible for setting the nodes certification state.
55

66
## Code Flow
7-
1- The command fires the `run` function with the passed options (flags)
8-
2- It then queries the postgres database using graphql with `certification == Diy` and `secure == true` to get all the nodes on the chain that needs manual certification
9-
3- Sets the node certification state to true on the chain
7+
1. The command fires the `run` function with the passed options (flags)
8+
2. It then queries the postgres database using graphql with `certification == Diy` and `secure == true` to get all the nodes on the chain that needs manual certification
9+
3. Sets the node certification state to true on the chain
1010

1111

1212
## Command-line flags

docs/internals/tools/update_worker.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Each network directory in the destination is represented as a symlink that point
1515
```
1616

1717
# Code Flow
18-
1- Tool user creates a new worker using `NewWorker` and use it to call `UpdateWithInterval`
18+
1. Tool user creates a new worker using `NewWorker` and use it to call `UpdateWithInterval`
1919
```go
2020
worker, err := internal.NewWorker(src, dst, params)
2121
if err != nil {
@@ -25,11 +25,11 @@ Each network directory in the destination is represented as a symlink that point
2525
return nil
2626
```
2727

28-
2- `UpdateWithInterval` updates zos version for each network through `updateZosVersion` private method, which fetches the latest zos version from the chain and update the symbolic link to point to the correct version file
28+
2. `UpdateWithInterval` updates zos version for each network through `updateZosVersion` private method, which fetches the latest zos version from the chain and update the symbolic link to point to the correct version file
2929

30-
3- `updateZosVersion` calculates relative path between src, dst to pass the correct link to `updateLink` private method
30+
3. `updateZosVersion` calculates relative path between src, dst to pass the correct link to `updateLink` private method
3131

32-
3- `updateLink` ensures that the symlink at **latest** points to the correct **current** version
32+
4. `updateLink` ensures that the symlink at **latest** points to the correct **current** version
3333

3434

3535
## Structure

0 commit comments

Comments
 (0)