From 18734078aab01e5cdc752262a82d685a264db510 Mon Sep 17 00:00:00 2001 From: Dileban Karunamoorthy Date: Mon, 25 Sep 2017 10:18:48 +1000 Subject: [PATCH] [FAB-6279] Fix minor typos in documentation Fix minor typos found in the following pages: https://hyperledger-fabric.readthedocs.io/en/latest/fabric_model.html https://hyperledger-fabric.readthedocs.io/en/latest/build_network.html Change-Id: I562600eb7f3f3757785b68469e8b566ab63f892c Signed-off-by: Dileban Karunamoorthy --- docs/source/build_network.rst | 2 +- docs/source/fabric_model.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/build_network.rst b/docs/source/build_network.rst index ce76348716d..f6944ace851 100644 --- a/docs/source/build_network.rst +++ b/docs/source/build_network.rst @@ -324,7 +324,7 @@ Configuration Transaction Generator The ``configtxgen tool`` is used to create four configuration artifacts: * orderer ``genesis block``, - * channel ``channel configuration transaction``, + * channel ``configuration transaction``, * and two ``anchor peer transactions`` - one for each Peer Org. Please see :doc:`configtxgen` for a complete description of the use of this diff --git a/docs/source/fabric_model.rst b/docs/source/fabric_model.rst index b376d7babdd..6f075158d85 100644 --- a/docs/source/fabric_model.rst +++ b/docs/source/fabric_model.rst @@ -46,7 +46,7 @@ Chaincode Chaincode is software defining an asset or assets, and the transaction instructions for modifying the asset(s). In other words, it's the business logic. Chaincode enforces the rules for reading or altering key value pairs or other state database information. Chaincode functions execute against -the ledger current state database and are initiated through a transaction proposal. Chaincode execution +the ledger's current state database and are initiated through a transaction proposal. Chaincode execution results in a set of key value writes (write set) that can be submitted to the network and applied to the ledger on all peers.