Skip to content

Commit 824fec4

Browse files
authored
Fix: typos (#4523)
* Fix: typos
1 parent a3bcfc6 commit 824fec4

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ the connection string, check the [Postgres
5858
documentation](https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNSTRING).
5959
`graph-node` uses a few Postgres extensions. If the Postgres user with which
6060
you run `graph-node` is a superuser, `graph-node` will enable these
61-
extensions when it initalizes the database. If the Postgres user is not a
61+
extensions when it initializes the database. If the Postgres user is not a
6262
superuser, you will need to create the extensions manually since only
6363
superusers are allowed to do that. To create them you need to connect as a
6464
superuser, which in many installations is the `postgres` user:

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Below, we outline the required steps to build a subgraph from scratch, which wil
6262

6363
2. [Create the Postgres database](#22-create-the-postgres-db)
6464

65-
3. [Start the Graph Node and Connect to an Etheruem node](#23-starting-the-graph-node-and-connecting-to-an-etheruem-node)
65+
3. [Start the Graph Node and Connect to an Ethereum node](#23-starting-the-graph-node-and-connecting-to-an-ethereum-node)
6666

6767
4. [Deploy the subgraph](#24-deploying-the-subgraph)
6868
3. Query the subgraph

docs/graphman.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ By default, it shows the following attributes for the deployment:
5252
- **name**
5353
- **status** *(`pending` or `current`)*
5454
- **id** *(the `Qm...` identifier for the deployment's subgraph)*
55-
- **namespace** *(The database schema which contain's that deployment data tables)*
55+
- **namespace** *(The database schema which contains that deployment data tables)*
5656
- **shard**
5757
- **active** *(If there are multiple entries for the same subgraph, only one of them will be active. That's the one we use for querying)*
5858
- **chain**
@@ -169,7 +169,7 @@ primary shard.
169169

170170
No indexed data is lost as a result of this command.
171171

172-
This sub-command is used as previus step towards removing all data from unused subgraphs, followed by
172+
This sub-command is used as previous step towards removing all data from unused subgraphs, followed by
173173
`graphman unused remove`.
174174

175175
A deployment is unused if it fulfills all of these criteria:
@@ -236,7 +236,7 @@ Remove a specific unused deployment
236236

237237
### SYNOPSIS
238238

239-
Delete a deployment and all it's indexed data
239+
Delete a deployment and all its indexed data
240240

241241
The deployment can be specified as either a subgraph name, an IPFS hash `Qm..`, or the database
242242
namespace `sgdNNN`. Since the same IPFS hash can be deployed in multiple shards, it is possible to
@@ -322,7 +322,7 @@ is useful to diagnose the integrity of cached blocks and eventually fix them.
322322

323323
### OPTIONS
324324

325-
Blocks can be selected by different methods. The `check-blocks` command let's you use the block hash, a single
325+
Blocks can be selected by different methods. The `check-blocks` command lets you use the block hash, a single
326326
number or a number range to refer to which blocks it should verify:
327327

328328
#### `by-hash`
@@ -338,7 +338,7 @@ number or a number range to refer to which blocks it should verify:
338338
graphman --config <config> chain check-blocks <chain-name> by-range [-f|--from <block-number>] [-t|--to <block-number>] [--delete-duplicates]
339339

340340
The `by-range` method lets you scan for numeric block ranges and offers the `--from` and `--to` options for
341-
you to define the search bounds. If one of those options is ommited, `graphman` will consider an open bound
341+
you to define the search bounds. If one of those options is omitted, `graphman` will consider an open bound
342342
and will scan all blocks up to or after that number.
343343

344344
Over time, it can happen that a JSON RPC provider offers different blocks for the same block number. In those

docs/metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Track the **last reverted block** for a subgraph deployment
2727
- `deployment_sync_secs`
2828
total **time spent syncing**
2929
- `deployment_transact_block_operations_duration`
30-
Measures **duration of commiting all the entity operations** in a block and **updating the subgraph pointer**
30+
Measures **duration of committing all the entity operations** in a block and **updating the subgraph pointer**
3131
- `deployment_trigger_processing_duration`
3232
Measures **duration of trigger processing** for a subgraph deployment
3333
- `eth_rpc_errors`

0 commit comments

Comments
 (0)