Skip to content

Commit be4a532

Browse files
Fix formatting and syntax issues across documentation (#1863)
* Update block_stat.md * Update get.md * Update quickstart.md * Update rollup_getinfo.md * Update quickstart.md * Update services/reference/ipfs/http-api-methods/get.md --------- Co-authored-by: Alexandra Carrillo <[email protected]>
1 parent 9c08902 commit be4a532

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

services/reference/ipfs/http-api-methods/block_stat.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ On success, the call to this endpoint will return with 200 and the following bod
4242

4343
```js
4444
{
45-
Key: "QmfQ5QAjvg4GtA3wg3adpnDJug8ktA1BxurVqBD8rtgVjM",
46-
Size: 18
45+
"Key": "QmfQ5QAjvg4GtA3wg3adpnDJug8ktA1BxurVqBD8rtgVjM",
46+
"Size": 18
4747
}
4848
```
4949

services/reference/ipfs/http-api-methods/get.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ curl "https://ipfs.infura.io:5001/api/v0/get?arg=QmZtmD2qt6fJot32nabSP3CUjicnypE
3535
- `arg` _\[Required]_ - The IPFS object hash.
3636
- `output` _\[Optional]_ - The path where the output should be stored.
3737
- `archive` _\[Optional]_ - Output a TAR archive. The default is `false`.
38-
- `compress` _\[\_O_ptional]_ - Compress the output with GZIP compression. The default is `false`.
39-
- `compression-level` _\[\_O_ptional]_ - The level of compression (1-9). The default is `-1`.
38+
- `compress` _\[Optional]_ - Compress the output with GZIP compression. The default is `false`.
39+
- `compression-level` _\[Optional]_ - The level of compression (1-9). The default is `-1`.
4040

4141
### Response
4242

services/reference/ipfs/quickstart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ print(response2)
113113
print(response2.text)
114114

115115
### REMOVE OBJECT WITH PIN/RM ###
116-
response3 = requests.post(endpoint + "api/v0/pin/rm", params=params, auth=(projectId, projectSecret))
116+
response3 = requests.post(endpoint + "/api/v0/pin/rm", params=params, auth=(projectId, projectSecret))
117117
print(response3.json())
118118
```
119119

services/reference/mantle/json-rpc-methods/rollup_getinfo.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Node information object:
2424
- `queueIndex`: Index in the canonical transaction chain of the last L1 to L2 message ingested.
2525
- `index`: Index of the last L2 transaction processed.
2626
- `verifiedIndex`: Index of the last transaction that was ingested from a batch that was posted
27-
the to L1.
27+
to L1.
2828

2929
## Example
3030

services/reference/opbnb/quickstart.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ In these examples, you'll use [npm](https://docs.npmjs.com/downloading-and-insta
8989
Replace `<YOUR-API-KEY>` with your actual Infura API key.
9090

9191
```javascript title="index.js"
92-
const axios = require("axios);
92+
const axios = require("axios");
9393
9494
axios.post("https://opbnb-mainnet.infura.io/v3/<YOUR-API-KEY>", {
9595
jsonrpc: "2.0",
@@ -186,4 +186,4 @@ Now that you have successfully made a call to the opBNB network, you can explore
186186
- **Monitor your usage**: Monitor your usage on the [MetaMask Developer dashboard](../../../../developer-tools/dashboard/how-to/dashboard-stats/) to ensure you're not hitting your rate limits.
187187
188188
Remember, the Infura community is here to help. If you have any questions or run into any issues, check out the
189-
[Infura community](https://community.infura.io/) for help and answers to common questions.
189+
[Infura community](https://community.infura.io/) for help and answers to common questions.

0 commit comments

Comments
 (0)