fix a typo (#910)

Signed-off-by: Long Dai <long0dai@foxmail.com>
This commit is contained in:
Long Dai 2021-06-05 03:08:40 +08:00 committed by GitHub
parent 4ee732e0bd
commit 95cc3f9b81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -558,7 +558,7 @@ func (m *GCounterState) GetValue() uint64 {
return 0
}
// A Positve-Negative Counter
// A Positive-Negative Counter
//
// A PN-Counter can be both incremented and decremented.
type PNCounterState struct {

View File

@ -114,7 +114,7 @@ message CrdtState {
// A Grow-only Counter
GCounterState gcounter = 1;
// A Positve-Negative Counter
// A Positive-Negative Counter
PNCounterState pncounter = 2;
// A Grow-only Set
@ -146,7 +146,7 @@ message GCounterState {
uint64 value = 1;
}
// A Positve-Negative Counter
// A Positive-Negative Counter
//
// A PN-Counter can be both incremented and decremented.
message PNCounterState {