From 629df7895dce36bc9636807dbdedad393e4ad3b0 Mon Sep 17 00:00:00 2001 From: Prayag Verma Date: Thu, 18 Feb 2016 13:32:09 +0530 Subject: [PATCH] Fix a typo in Readme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `asynchronously` → `asynchronously` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index acaa870..3505f5b 100644 --- a/README.md +++ b/README.md @@ -287,7 +287,7 @@ Note that most methods on ```GCDWebServer``` to add handlers only require the `` Asynchronous HTTP Responses =========================== -New in GCDWebServer 3.0 is the ability to process HTTP requests aysnchronously i.e. add handlers to the server which generate their ```GCDWebServerResponse``` asynchronously. This is achieved by adding handlers that use a ```GCDWebServerAsyncProcessBlock``` instead of a ```GCDWebServerProcessBlock```. Here's an example: +New in GCDWebServer 3.0 is the ability to process HTTP requests asynchronously i.e. add handlers to the server which generate their ```GCDWebServerResponse``` asynchronously. This is achieved by adding handlers that use a ```GCDWebServerAsyncProcessBlock``` instead of a ```GCDWebServerProcessBlock```. Here's an example: **(Synchronous version)** The handler blocks while generating the HTTP response: ```objectivec