Skip to content

Commit 9bdf908

Browse files
jasmyhighrootulp
andauthoredDec 19, 2024··
fix: typos in documentation (#1561)
Co-authored-by: Rootul P <[email protected]>
1 parent 26cb208 commit 9bdf908

4 files changed

+4
-4
lines changed
 

‎docs/celestia-architecture/adr-001-block-propagation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ When a user requests a block from the LL node, the request will be set to the IP
102102

103103
![user request flow](./assets/user-request.png)
104104

105-
The goal is to not change the public interface for RPC's. It is yet to be seen if this possible. This means that CIDs will need to be set and loaded from the store in order to get all the related block information a user requires.
105+
The goal is to not change the public interface for RPC's. It is yet to be seen if this is possible. This means that CIDs will need to be set and loaded from the store in order to get all the related block information a user requires.
106106

107107
## Status
108108

‎docs/celestia-architecture/adr-002-ipld-da-sampling.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ and [`NodeAdder`](https://github.com/ipfs/go-ipld-format/blob/d2e09424ddee0d7e69
4747
As an optimization, we can also use a [`Batch`](https://github.com/ipfs/go-ipld-format/blob/d2e09424ddee0d7e696d01143318d32d0fb1ae63/batch.go#L29)
4848
to batch adding and removing nodes.
4949
This will be achieved by passing around a [CoreAPI](https://github.com/ipfs/interface-go-ipfs-core/blob/b935dfe5375eac7ea3c65b14b3f9a0242861d0b3/coreapi.go#L15)
50-
object, which derive from the IPFS node which is created along a with a tendermint node (see [#152]).
50+
object, which derives from the IPFS node which is created along with a tendermint node (see [#152]).
5151
This code snippet does exactly that (see the [go-ipfs documentation] for more examples):
5252
```go
5353
// This constructs an IPFS node instance

‎docs/celestia-architecture/adr-003-application-data-retrieval.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
## Context
88

99
This ADR builds on top of [ADR 002](adr-002-ipld-da-sampling.md) and will use the implemented APIs described there.
10-
The reader should familiarize themselves at least with the high-level concepts the as well as in the [specs](https://github.com/celestiaorg/celestia-specs/blob/master/src/specs/data_structures.md#2d-reed-solomon-encoding-scheme).
10+
The reader should familiarize themselves at least with the high-level concepts as well as in the [specs](https://github.com/celestiaorg/celestia-specs/blob/master/src/specs/data_structures.md#2d-reed-solomon-encoding-scheme).
1111

1212
The academic [paper](https://arxiv.org/abs/1905.09274) describes the motivation and context for this API.
1313
The main motivation can be quoted from section 3.3 of that paper:

‎docs/celestia-architecture/adr-007-minimal-changes-to-tendermint.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ describe how to hash the block data here:
123123
- Add PreprocessTxs method to ABCI (https://github.com/celestiaorg/celestia-core/pull/110)
124124
- Add method to ABCI interface
125125
- Create sync and async versions
126-
- Add sync version the the CreateProposalBlock method of BlockExecutor
126+
- Add sync version to the CreateProposalBlock method of BlockExecutor
127127

128128
#### Fill the DAH while making the block
129129

0 commit comments

Comments
 (0)
Please sign in to comment.