Skip to content

Commit 6ca8355

Browse files
authored
Merge pull request #2615 from tossmilestone/fix-forward-typo
Fix 'forward' typos
2 parents b5274fe + 9f81700 commit 6ca8355

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

api/services/events/v1/events.pb.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/services/events/v1/events.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ service Events {
2020
// Forward sends an event that has already been packaged into an envelope
2121
// with a timestamp and namespace.
2222
//
23-
// This is useful if earlier timestamping is required or when fowarding on
23+
// This is useful if earlier timestamping is required or when forwarding on
2424
// behalf of another component, namespace or publisher.
2525
rpc Forward(ForwardRequest) returns (google.protobuf.Empty);
2626

events/exchange/exchange.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ var _ events.Subscriber = &Exchange{}
5252

5353
// Forward accepts an envelope to be direcly distributed on the exchange.
5454
//
55-
// This is useful when an event is forwaded on behalf of another namespace or
55+
// This is useful when an event is forwarded on behalf of another namespace or
5656
// when the event is propagated on behalf of another publisher.
5757
func (e *Exchange) Forward(ctx context.Context, envelope *events.Envelope) (err error) {
5858
if err := validateEnvelope(envelope); err != nil {

0 commit comments

Comments
 (0)