From f711aaea5b0ab8a62c7421121bef7fb39f5c0987 Mon Sep 17 00:00:00 2001 From: Matt Irvine Date: Mon, 30 Oct 2017 10:57:29 -0700 Subject: [PATCH] Fix typo in docs/design/index.md (#536) --- docs/design/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design/index.md b/docs/design/index.md index 5fd84132..0d31d353 100644 --- a/docs/design/index.md +++ b/docs/design/index.md @@ -18,7 +18,7 @@ SQL DB, and Azure SQL DW instances. ## Message Dispatcher The JSON-RPC mechanism is build on a message dispatcher. Messages are read from stdio and serialized\deserialized -using JSON.Net. Message handlers are registered with the dispatcher. Ass the messages are processed by +using JSON.Net. Message handlers are registered with the dispatcher. As the messages are processed by the dispatcher queue they are routed to any registered handlers. The dispatch queue processes messages serially.