Skip to content

Commit

Permalink
Fix Word Spelling subscribers in Comments (alibaba#8773)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhangShenao authored Jul 21, 2022
1 parent 94950a2 commit 4a3472b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ public interface NamingSubscriberService {
*
* @param namespaceId namespace id
* @param serviceName service name
* @return list of subsribers
* @return list of subscribers
*/
Collection<Subscriber> getSubscribers(String namespaceId, String serviceName);

/**
* Get all push target subscribers for specified service.
*
* @param service {@link Service}
* @return list of subsribers
* @return list of subscribers
*/
Collection<Subscriber> getSubscribers(Service service);

Expand All @@ -52,7 +52,7 @@ public interface NamingSubscriberService {
*
* @param namespaceId namespace id
* @param serviceName fuzzy serviceName
* @return list of subsribers
* @return list of subscribers
*/
Collection<Subscriber> getFuzzySubscribers(String namespaceId, String serviceName);

Expand All @@ -62,7 +62,7 @@ public interface NamingSubscriberService {
* <p>Warning: This method cost much performance, use less.
*
* @param service {@link Service}
* @return list of subsribers
* @return list of subscribers
*/
Collection<Subscriber> getFuzzySubscribers(Service service);
}

0 comments on commit 4a3472b

Please sign in to comment.