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 {