Skip to content

Commit d147a63

Browse files
author
Daisuke IIZUKA
committed
[FAB-12578] Fix misspelling "appopriate"
Fix misspelling "appopriate" to "appropriate". Change-Id: I3af9883ef05f7ebec6ff14ecd15ac88919898b65 Signed-off-by: Daisuke IIZUKA <daisuke.iizuka.ag@hitachi.com>
1 parent b407d94 commit d147a63

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/chaincode/go/enccc_example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ the chaincode decrypts the message and puts it in the proposal response. An
5555
invocation would persist the result in the ledger for all channel readers to
5656
see whereas a query can be discarded and so the result remains confidential.
5757

58-
To test signing and verifying, you also need to generate an ECDSA key for the appopriate
58+
To test signing and verifying, you also need to generate an ECDSA key for the appropriate
5959
curve, as follows.
6060

6161
```

orderer/consensus/solo/consensus_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,14 +136,14 @@ func TestBatchTimer(t *testing.T) {
136136
select {
137137
case <-support.Blocks:
138138
case <-time.After(time.Second):
139-
t.Fatalf("Did not create the second batch, indicating that the timer was not appopriately reset")
139+
t.Fatalf("Did not create the second batch, indicating that the timer was not appropriately reset")
140140
}
141141

142142
support.SharedConfigVal.BatchTimeoutVal, _ = time.ParseDuration("10s")
143143
syncQueueMessage(testMessage, bs, support.BlockCutterVal)
144144
select {
145145
case <-support.Blocks:
146-
t.Fatalf("Created another batch, indicating that the timer was not appopriately re-read")
146+
t.Fatalf("Created another batch, indicating that the timer was not appropriately re-read")
147147
case <-time.After(100 * time.Millisecond):
148148
}
149149

0 commit comments

Comments
 (0)