Skip to content

Commit

Permalink
[ISSUE apache#8786] Fix doc typo (apache#8787)
Browse files Browse the repository at this point in the history
  • Loading branch information
luozongle01 authored Oct 8, 2024
1 parent c5ac8a4 commit 782da70
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ private void schedulingSyncBrokerMetadata() {
}

/**
* Scheduling sync controller medata.
* Scheduling sync controller metadata.
*/
private boolean schedulingSyncControllerMetadata() {
// Get controller metadata first.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public enum PopStatus {
FOUND,
/**
* No new message can be pull after polling time out
* delete after next realease
* delete after next release
*/
NO_NEW_MSG,
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class ServiceProvider {
* Returns a string that uniquely identifies the specified object, including its class.
* <p>
* The returned string is of form "classname@hashcode", ie is the same as the return value of the Object.toString()
* method, but works even when the specified object's class has overidden the toString method.
* method, but works even when the specified object's class has overridden the toString method.
*
* @param o may be null.
* @return a string of form classname@hashcode, or "null" if param o is null.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ public interface ForbiddenType {
*/
int TOPIC_FORBIDDEN = 3;
/**
* 4=forbidden by brocasting mode
* 4=forbidden by broadcasting mode
*/
int BROADCASTING_DISABLE_FORBIDDEN = 4;
/**
* 5=forbidden for a substription(group with a topic)
* 5=forbidden for a subscription(group with a topic)
*/
int SUBSCRIPTION_FORBIDDEN = 5;

Expand Down

0 comments on commit 782da70

Please sign in to comment.