Skip to content

Commit 1c74421

Browse files
Fix typos and spelling errors (#1866)
* Update dependency_review.yml * Update _category_.json * Update _eth_newblockfilter-description.mdx * Update _trace_callmany-parameters.mdx * Update _trace_filter-request.mdx * Update _eth_accounts-description.mdx * Update _eth_blocknumber-request.mdx * Update _eth_getblockreceipts-parameters.mdx --------- Co-authored-by: Alexandra Carrillo <[email protected]>
1 parent 6d9a569 commit 1c74421

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/dependency_review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
case:
11-
name: Check for licences not being allowed
11+
name: Check for licenses not being allowed
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:

services/how-to/use-ipfs/access-ipfs-content/_category_.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"collapsed": true,
66
"link": {
77
"type": "generated-index",
8-
"slug": "use-ipfs/access-ips-content",
8+
"slug": "use-ipfs/access-ipfs-content",
99
"description": "This section provides information about how to access IPFS content."
1010
}
1111
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Returns a list of addresses owned by client.
1+
Returns a list of addresses owned by the client.

services/reference/_partials/_eth_blocknumber-request.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ curl https://mainnet.infura.io/v3/<YOUR-API-KEY> \
1515
<TabItem value="WSS">
1616

1717
```bash
18-
wscat -c wss://mainnet.infura.io/ws/v3/<YOUR-API-KEY> -x '{"jsonrpc": "2.0", "method": "eth_blockNumber", "params":[], "id": 1}'
18+
wscat -c wss://mainnet.infura.io/ws/v3/<YOUR-API-KEY> -x '{"jsonrpc": "2.0", "method": "eth_blockNumber", "params": [], "id": 1}'
1919
```
2020

2121
</TabItem>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`blockNumber`:[_Required_] Hexadecimal or decimal integer representing a block number, or one of
1+
`blockNumber`: [_Required_] Hexadecimal or decimal integer representing a block number, or one of
22
the string tags:
33
- `latest`
44
- `earliest`
@@ -8,4 +8,4 @@
88

99
:::note
1010
`pending` returns the same data as `latest`.
11-
:::
11+
:::
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Creates a filter in the node, to notify when a new block arrives. To check if the state has changed, call [`eth_getFilterChanges`](../../ethereum/json-rpc-methods/filter-methods/eth_getfilterchanges.mdx).
22

33
:::tip Valid for fifteen minutes
4-
Filter IDs will be valid for up to fifteen minutes, and can polled by any connection using the same `<YOUR-API-KEY>`.
4+
Filter IDs will be valid for up to fifteen minutes, and can be polled by any connection using the same `<YOUR-API-KEY>`.
55
:::
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
- `trace call parameters`: _[Required]_ Array of trace call parameters.
22
Each trace call parameter itself is an array containing the following:
33
- `transaction call object`: _[Required]_ Transaction call object containing the same data as in the [`trace_call`](../../ethereum/json-rpc-methods/trace-methods/trace_call.mdx#parameters) parameter.
4-
- `options`:_[Optional]_ An array of tracing options. Tracing options are [`trace`](../../ethereum/json-rpc-methods/trace-methods/index.md#trace) and [`stateDiff`](../../ethereum/json-rpc-methods/trace-methods/index.md#statediff). Specify both options or none.
4+
- `options`: _[Optional]_ An array of tracing options. Tracing options are [`trace`](../../ethereum/json-rpc-methods/trace-methods/index.md#trace) and [`stateDiff`](../../ethereum/json-rpc-methods/trace-methods/index.md#statediff). Specify both options or none.
55
- `block parameter`: _[Required]_ The hexadecimal block number, or the string `latest`, `earliest`, or `pending`. See the [default block parameter](https://ethereum.org/en/developers/docs/apis/json-rpc/#default-block). The block parameter is applied uniformly to all trace calls in the `trace call parameters` array.

services/reference/_partials/trace-methods/_trace_filter-request.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ curl https://mainnet.infura.io/v3/<YOUR-API-KEY> \
1515
<TabItem value="WSS">
1616

1717
```bash
18-
wscat -c wss://mainnet.infura.io/ws/v3/<YOUR-API-KEY> -x '{"jsonrpc": "2.0", "method": "trace_filter", "params": [{"fromBlock": "0x1", "toBlock": "0x21", "after": 2, "count":2, "fromAddress": ["0xfe3b557e8fb62b89f4916b721be55ceb828dbd73"]}], "id": 415}'
18+
wscat -c wss://mainnet.infura.io/ws/v3/<YOUR-API-KEY> -x '{"jsonrpc": "2.0", "method": "trace_filter", "params": [{"fromBlock": "0x1", "toBlock": "0x21", "after": 2, "count": 2, "fromAddress": ["0xfe3b557e8fb62b89f4916b721be55ceb828dbd73"]}], "id": 415}'
1919
```
2020

2121
</TabItem>

0 commit comments

Comments
 (0)