From 688067ae09071316cbf5310b17d92d4fec39b42a Mon Sep 17 00:00:00 2001 From: Jeff Date: Mon, 10 Sep 2018 14:47:03 +0800 Subject: [PATCH] docs: fix 2 typos (#2982) --- docs/source/en/intro/egg-and-koa.md | 2 +- docs/source/en/intro/quickstart.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/en/intro/egg-and-koa.md b/docs/source/en/intro/egg-and-koa.md index 447ef81f9a..11d3d60135 100644 --- a/docs/source/en/intro/egg-and-koa.md +++ b/docs/source/en/intro/egg-and-koa.md @@ -57,7 +57,7 @@ At the same time Request and Response are mounted to Context object. Just like E - `set response.body` - `set response.status` -### Exception handlering +### Exception handling Another enormous advantage for writing asynchronous code in synchronous way is that it is quite at ease to handle exception. You can catch all the exceptions thrown in the codes followed the convention with `try catch`. We can easily write a customized exception handling middleware. diff --git a/docs/source/en/intro/quickstart.md b/docs/source/en/intro/quickstart.md index 4904e94025..0003d9a278 100644 --- a/docs/source/en/intro/quickstart.md +++ b/docs/source/en/intro/quickstart.md @@ -94,7 +94,7 @@ Then add a [configuration](../basics/config.md) file: ```js // config/config.default.js -exports.keys = ; +exports.keys = ; ``` The project directory looks like this: