Skip to content

Commit 34aab84

Browse files
committedAug 16, 2024·
fix typing
1 parent c3bf58d commit 34aab84

File tree

6 files changed

+32
-11
lines changed

6 files changed

+32
-11
lines changed
 

‎.cspell.json

+3
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,8 @@
6464
"[^\n]+\\|",
6565
"\\|[^\n]+\\|[^\n]+\\|",
6666
"\\/img\\/socialCards\\/[\\w-]+\\.jpg"
67+
],
68+
"ignoreWords": [
69+
"Hildr"
6770
]
6871
}

‎.github/workflows/release.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Release
3+
4+
on:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: write
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Build
20+
uses: Consensys/docs-gha/release@main
21+
with:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

‎docs/hildr-docs/run-a-node/cmd_line_options.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ java --enable-preview -cp hildr-node.jar io.optimism.Hildr --help
2323
</TabItem>
2424
</Tabs>
2525

26-
Specifys whether to start up a Hildr devnet node.
26+
Specify whether to start up a Hildr devnet node.
2727

2828
### `network`
2929

@@ -88,7 +88,7 @@ The URL of the L1 Ethereum node that your Hildr node will connect to.
8888
</TabItem>
8989
</Tabs>
9090

91-
The URL of the L1 Ethereum node that your Hildr node will connect to via Websockets.
91+
The URL of the L1 Ethereum node that your Hildr node will connect to via Websocket.
9292

9393
### `l1-beacon-url`
9494

‎docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Introdution
1+
# Introduction
22
We continue to contribute public goods to help the Ethereum and Optimism community get better and better.
33

44
## Our Works

‎docs/op-besu-docs/run-a-node/use_binaries.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You can install the Op-besu or Op-geth client to run a Optimism EL node from a b
1010

1111
## Install from packaged binaries
1212

13-
Download the Op Besu [packaged binaires](https://github.com/optimism-java/op-besu/releases).
13+
Download the Op Besu [packaged binaries](https://github.com/optimism-java/op-besu/releases).
1414

1515
Unpack the downloaded files and change into the `op-besu-<release>` directory.
1616

‎docusaurus.config.js

+3-7
Original file line numberDiff line numberDiff line change
@@ -280,13 +280,9 @@ const config = {
280280
containerId: "GTM-TB58STH",
281281
},
282282
],
283-
[
284-
"@docusaurus/plugin-client-redirects",
285-
{
286-
redirects: [
287-
],
288-
},
289-
],
283+
// [
284+
// "@docusaurus/plugin-client-redirects",{}
285+
// ],
290286
],
291287
stylesheets: [
292288
{

0 commit comments

Comments
 (0)
Please sign in to comment.