This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push: new a9b25d0ba Fix spelling in Javadoc a9b25d0ba is described below commit a9b25d0ba909f09974a6fb1fe127fdc0e895694e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Oct 7 10:30:58 2023 -0400 Fix spelling in Javadoc --- .../java/org/apache/commons/lang3/concurrent/CircuitBreaker.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/concurrent/CircuitBreaker.java b/src/main/java/org/apache/commons/lang3/concurrent/CircuitBreaker.java index 4df62ece1..164eb92b6 100644 --- a/src/main/java/org/apache/commons/lang3/concurrent/CircuitBreaker.java +++ b/src/main/java/org/apache/commons/lang3/concurrent/CircuitBreaker.java @@ -43,7 +43,7 @@ public interface CircuitBreaker<T> { /** * Tests the current open state of this circuit breaker. A return value of * <strong>true</strong> means that the circuit breaker is currently open indicating a - * problem in the monitored sub system. + * problem in the monitored subsystem. * * @return the current open state of this circuit breaker. */ @@ -52,7 +52,7 @@ public interface CircuitBreaker<T> { /** * Tests the current closed state of this circuit breaker. A return value of * <strong>true</strong> means that the circuit breaker is currently closed. This - * means that everything is okay with the monitored sub system. + * means that everything is okay with the monitored subsystem. * * @return the current closed state of this circuit breaker. */ @@ -76,7 +76,7 @@ public interface CircuitBreaker<T> { /** * Opens this circuit breaker. Its state is changed to open. Depending on a concrete - * implementation, it may close itself again if the monitored sub system becomes + * implementation, it may close itself again if the monitored subsystem becomes * available. If this circuit breaker is already open, this method has no effect. */ void open();