From 6fa18560a9cdf1bebad8baa16b3c4e6ee6d1ed97 Mon Sep 17 00:00:00 2001
From: 0xflotus <0xflotus@gmail.com>
Date: Mon, 22 Apr 2019 04:52:35 +0200
Subject: [PATCH] fixed synchronously

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 7d9f5f7..03eb175 100644
--- a/README.md
+++ b/README.md
@@ -66,7 +66,7 @@ A curated collection of idiomatic design & application patterns for Go language.
 | [Broadcast](/concurrency/broadcast.md) | Transfers a message to all recipients simultaneously | ✘ |
 | [Coroutines](/concurrency/coroutine.md) | Subroutines that allow suspending and resuming execution at certain locations | ✘ |
 | [Generators](/concurrency/generator.md) | Yields a sequence of values one at a time | ✔ |
-| [Reactor](/concurrency/reactor.md) | Demultiplexes service requests delivered concurrently to a service handler and dispatches them syncronously to the associated request handlers | ✘ |
+| [Reactor](/concurrency/reactor.md) | Demultiplexes service requests delivered concurrently to a service handler and dispatches them synchronously to the associated request handlers | ✘ |
 | [Parallelism](/concurrency/parallelism.md) | Completes large number of independent tasks | ✔ |
 | [Producer Consumer](/concurrency/producer_consumer.md) | Separates tasks from task executions | ✘ |