From dfcf32d8e51bce55b582d1fe079737271440e12f Mon Sep 17 00:00:00 2001 From: "D. von Bergen" <33560750+DomiJV@users.noreply.github.com> Date: Tue, 24 Sep 2024 20:21:18 +0200 Subject: [PATCH] Fix spelling of comment --- .../example/middleware/ThrottlingMiddleware.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/refactoring_guru/chain_of_responsibility/example/middleware/ThrottlingMiddleware.java b/src/refactoring_guru/chain_of_responsibility/example/middleware/ThrottlingMiddleware.java index 78341f2..b9429bc 100644 --- a/src/refactoring_guru/chain_of_responsibility/example/middleware/ThrottlingMiddleware.java +++ b/src/refactoring_guru/chain_of_responsibility/example/middleware/ThrottlingMiddleware.java @@ -16,8 +16,8 @@ public ThrottlingMiddleware(int requestPerMinute) { } /** - * EN: Please, not that checkNext() call can be inserted both in the - * beginning of this method and in the end. + * EN: Please, note that the checkNext() call can be inserted either at the + * beginning of this method or at the end. * * This gives much more flexibility than a simple loop over all middleware * objects. For instance, an element of a chain can change the order of