From 95cc3f9b81b1836c5d06b6afc7edec0d043fe522 Mon Sep 17 00:00:00 2001 From: Long Dai Date: Sat, 5 Jun 2021 03:08:40 +0800 Subject: [PATCH] fix a typo (#910) Signed-off-by: Long Dai --- state/cloudstate/proto/crdt.pb.go | 2 +- state/cloudstate/proto/crdt.proto | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/state/cloudstate/proto/crdt.pb.go b/state/cloudstate/proto/crdt.pb.go index 839449c13..596392080 100644 --- a/state/cloudstate/proto/crdt.pb.go +++ b/state/cloudstate/proto/crdt.pb.go @@ -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 { diff --git a/state/cloudstate/proto/crdt.proto b/state/cloudstate/proto/crdt.proto index 2c2da69ca..c59aa4a6f 100644 --- a/state/cloudstate/proto/crdt.proto +++ b/state/cloudstate/proto/crdt.proto @@ -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 {