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