소스 검색

Remove an invalid non ASCII encoded char from comment of LearnerSyncThrottler.

The char is non ASCII encoded (so potentially it could break builds where encoding was not set as UTF8), and it is clearly redudant (as semantically
there should be no chars between 'or' and 'from', in this case.

Remove the char fixes both.
Michael Han 6 년 전
부모
커밋
dec6ac782b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      zookeeper-server/src/main/java/org/apache/zookeeper/server/quorum/LearnerSyncThrottler.java

+ 1 - 1
zookeeper-server/src/main/java/org/apache/zookeeper/server/quorum/LearnerSyncThrottler.java

@@ -23,7 +23,7 @@ import org.slf4j.LoggerFactory;
 
 /**
  * Utility class to limit the number of concurrent syncs from a leader to
- * observers and followers orß from a follower to observers.  {@link LearnerHandler}
+ * observers and followers or from a follower to observers.  {@link LearnerHandler}
  * objects should call {@link #beginSync(boolean)} before sending a sync and
  * {@link #endSync()} after finishing, successfully or not.
  *