From a9b25d0ba909f09974a6fb1fe127fdc0e895694e Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sat, 7 Oct 2023 10:30:58 -0400 Subject: [PATCH] Fix spelling in Javadoc --- .../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 { /** * Tests the current open state of this circuit breaker. A return value of * true 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 { /** * Tests the current closed state of this circuit breaker. A return value of * true 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 { /** * 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();