From 5d500ee83c71216acacc81b9606a50cddd05accb Mon Sep 17 00:00:00 2001 From: wuqiaomin Date: Wed, 14 Apr 2021 14:56:52 +0800 Subject: [PATCH] Fixed Typo Signed-off-by: wuqiaomin --- integration/chaincode/module/main.go | 2 +- integration/chaincode/simple/chaincode.go | 2 +- .../lifecycle/testdata/chaincode/simple-v14/chaincode.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/integration/chaincode/module/main.go b/integration/chaincode/module/main.go index a1b2b0c199a..4ea20df2096 100644 --- a/integration/chaincode/module/main.go +++ b/integration/chaincode/module/main.go @@ -68,7 +68,7 @@ func (t *SimpleChaincode) Invoke(stub shim.ChaincodeStubInterface) pb.Response { // Deletes an entity from its state return t.delete(stub, args) case "query": - // the old "Query" is now implemtned in invoke + // the old "Query" is now implemented in invoke return t.query(stub, args) case "respond": // return with an error diff --git a/integration/chaincode/simple/chaincode.go b/integration/chaincode/simple/chaincode.go index 8142a4ae2c4..8bc2ccbbb72 100644 --- a/integration/chaincode/simple/chaincode.go +++ b/integration/chaincode/simple/chaincode.go @@ -71,7 +71,7 @@ func (t *SimpleChaincode) Invoke(stub shim.ChaincodeStubInterface) pb.Response { // Deletes an entity from its state return t.delete(stub, args) case "query": - // the old "Query" is now implemtned in invoke + // the old "Query" is now implemented in invoke return t.query(stub, args) case "respond": // return with an error diff --git a/integration/lifecycle/testdata/chaincode/simple-v14/chaincode.go b/integration/lifecycle/testdata/chaincode/simple-v14/chaincode.go index 2e3fe66cf0d..2d5223ec7c2 100644 --- a/integration/lifecycle/testdata/chaincode/simple-v14/chaincode.go +++ b/integration/lifecycle/testdata/chaincode/simple-v14/chaincode.go @@ -69,7 +69,7 @@ func (t *SimpleChaincode) Invoke(stub shim.ChaincodeStubInterface) pb.Response { // Deletes an entity from its state return t.delete(stub, args) case "query": - // the old "Query" is now implemtned in invoke + // the old "Query" is now implemented in invoke return t.query(stub, args) case "respond": // return with an error