From ac857b0ffe30722ea0d70a7fc991b3845cd3356e Mon Sep 17 00:00:00 2001 From: Quentin Date: Thu, 26 Dec 2024 21:55:07 +0100 Subject: [PATCH] Typo: feedbacks=>feedback --- documentation/hexagonal-architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/hexagonal-architecture.md b/documentation/hexagonal-architecture.md index 6e12f4dcbbd..59642ff412a 100644 --- a/documentation/hexagonal-architecture.md +++ b/documentation/hexagonal-architecture.md @@ -41,7 +41,7 @@ The very clear separation of concern enforced by the architecture eases automati ### Shorten feedback loops -In software development if you want to go faster (like really faster) you'll have to go for short feedbacks loops. If you have a button that can tell you in a few seconds that your solution is still behaving as intended you'll be way faster than checking that by hand after any update (in fact, you won't check by hand that after any update...). +In software development if you want to go faster (like really faster) you'll have to go for short feedback loops. If you have a button that can tell you in a few seconds that your solution is still behaving as intended you'll be way faster than checking that by hand after any update (in fact, you won't check by hand that after any update...). Let's be honest here: hexagonal architecture won't help for the fastest feedback loops which are pair feedback in [pair](https://en.wikipedia.org/wiki/Pair_programming) or [mob programming](https://en.wikipedia.org/wiki/Mob_programming).