This is an automated email from the ASF dual-hosted git repository.
alexstocks pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git
The following commit(s) were added to refs/heads/main by this push:
new 6361d9f5c [FIX]:'all' should be followed by the plural form of the
noun. (#2286)
6361d9f5c is described below
commit 6361d9f5c28854a509e1657a534ab0954f29819b
Author: 郭天宇 <[email protected]>
AuthorDate: Sun Apr 2 11:04:51 2023 +0800
[FIX]:'all' should be followed by the plural form of the noun. (#2286)
---
protocol/protocol.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/protocol/protocol.go b/protocol/protocol.go
index ff5356ed2..946057729 100644
--- a/protocol/protocol.go
+++ b/protocol/protocol.go
@@ -35,7 +35,7 @@ import (
//
// # Refer method is to refer a remote service
//
-// Destroy method will destroy all invoker and exporter, so it only is called
once.
+// Destroy method will destroy all invokers and exporters, so it only is
called once.
type Protocol interface {
Export(invoker Invoker) Exporter
Refer(url *common.URL) Invoker