Skip to content

Commit 8e62595

Browse files
author
Yuta Namiki
committed
[FAB-9517] Correct Misspelling in Document
Correct misspellings in the document. Checked by Code Spell Checker for Visual Studio Code. British spelling remains. Change-Id: I0bfe3f170dc872ca711307955e41eb4b706c6e62 Signed-off-by: Yuta Namiki <y-namiki@ak.jp.nec.com>
1 parent 5d5ed4c commit 8e62595

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

docs/source/CONTRIBUTING.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ What makes a good change request?
193193
too. If you send a 1,000 or 2,000 LOC change, how long do you think
194194
it takes to review all of that code? Keep your changes to < 200-300
195195
LOC, if possible. If you have a larger change, decompose it into
196-
multiple independent changess. If you are adding a bunch of new
196+
multiple independent changes. If you are adding a bunch of new
197197
functions to fulfill the requirements of a new capability, add them
198198
separately with their tests, and then write the code that uses them
199199
to deliver the capability. Of course, there are always exceptions. If

docs/source/Fabric-FAQ.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ included in the submitted transaction, versus just output data. Therefore,
5050
the input data can be private to the endorsers only.
5151
If you do not want the orderers to see chaincode output, then you can hash or
5252
encrypt the data before calling chaincode. If you hash the data then you will
53-
need to provide a meansto share the source data. If you encrypt the data then
53+
need to provide a means to share the source data. If you encrypt the data then
5454
you will need to provide a means to share the decryption keys.
5555

5656
Application-side Programming Model

docs/source/commands/peerchaincode.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ flags are
5757

5858
* `-o` or `--orderer <string>`
5959

60-
Ordering service endpoint specifed as `<hostname or IP address>:<port>`
60+
Ordering service endpoint specified as `<hostname or IP address>:<port>`
6161

6262
* `--ordererTLSHostnameOverride <string>`
6363

docs/source/commands/peernode.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The `peer node start` command has the following command specific flag:
4242
* `--peer-chaincodedev`
4343

4444
starts peer node in chaincode development mode. Normally chaincode containers are started
45-
and maintained by peer. However in devlopment mode, chaincode is built and started by the user.
45+
and maintained by peer. However in development mode, chaincode is built and started by the user.
4646
This mode is useful during chaincode development phase for iterative development.
4747
See more information on development mode in the [chaincode tutorial](../chaincode4ade.html).
4848

docs/source/config_update.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@ pre-production environments with weak consortium `ChannelCreation` policies.
794794
mod_policy for the Application group of new channels for the consortium it is defined in.
795795
The signature set attached to the channel creation request will be checked against
796796
the instantiation of this policy in the new channel to ensure that the channel
797-
creation is authorized. Note that this config vzlue is only set in the orderer
797+
creation is authorized. Note that this config value is only set in the orderer
798798
system channel.
799799

800800
```

docs/source/identity/identity.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ it is inherently not capable of providing SSL certificates for general/automatic
222222
in browsers. However, because **some** CA must be used to manage identity
223223
(even in a test environment), fabric-ca can be used to provide and manage
224224
certificates. It is also possible -- and fully appropriate -- to use a
225-
public/commerical root or intermediate CA to provide identification.
225+
public/commercial root or intermediate CA to provide identification.
226226

227227
If you're interested, you can read a lot more about fabric-ca
228228
[in the CA documentation section](http://hyperledger-fabric-ca.readthedocs.io/).

docs/source/ledger/ledger.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ In the above example, we can see the following fields:
224224

225225
* **Signature**
226226

227-
This section, illustrated by S4, contains a cryptgraphic signature, created by
227+
This section, illustrated by S4, contains a cryptographic signature, created by
228228
the client application. This field is used to check that the transaction
229229
details have not been tampered with, as it requires the application's private
230230
key to generate it.
@@ -282,7 +282,7 @@ between a network node and a CouchDB instance. All of this is invisible to
282282
chaincode. See [CouchDB as the StateDatabase](./couchdb_as_state_database.html)
283283
for more information on CouchDB.
284284

285-
In LeveDB and CouchDB, we see an important aspect of Hyperledger Fabric -- it is
285+
In LevelDB and CouchDB, we see an important aspect of Hyperledger Fabric -- it is
286286
*pluggable*. The world state database could be a relational data store, or a
287287
graph store, or a temporal database. This provides great flexibility in the
288288
types of ledger states that can be efficiently accessed, allowing Hyperledger
@@ -323,7 +323,7 @@ headers and hashes. If you're interested in the precise details of these, you
323323
will find a dedicated reference topic elsewhere in the documentation. It gives
324324
you a fully worked example of an entire block with its transactions in glorious
325325
detail -- but for now, you have achieved a solid conceptual understanding of a
326-
Hypterledger Fabric ledger. Well done!
326+
Hyperledger Fabric ledger. Well done!
327327

328328
## More information
329329

docs/source/peers/peers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ many chaincodes which access it. In this example, we can see that peer P1
9292
hosts ledgers L1 and L2. L1 is accessed by chaincodes S1 and S2, whereas
9393
L2 is accessed by S3 and S1. We can see that S1 can access both L1 and L2.*
9494

95-
We'll see a little later why the concept of **channels** in Hyperldeger Fabric
95+
We'll see a little later why the concept of **channels** in Hyperledger Fabric
9696
is important when hosting multiple ledgers or multiple chaincodes on a
9797
peer.
9898

0 commit comments

Comments
 (0)