From 5bca202c28c6fd2d8c0e9d9de81fa944964a2640 Mon Sep 17 00:00:00 2001 From: an-tao Date: Sun, 20 Sep 2020 22:14:37 +0800 Subject: [PATCH] Update README --- README.md | 2 +- README.zh-CN.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a2eb834c..91f55bdf 100755 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ As you can see, users can use the `HttpController` to map paths and parameters a In addition, you can also find that all handler interfaces are in asynchronous mode, where the response is returned by a callback object. This design is for performance reasons because in asynchronous mode the drogon application can handle a large number of concurrent requests with a small number of threads. -After compiling all of the above source files, we get a very simple web application. This is a good start. **For more information, please visit the [wiki](https://github.com/an-tao/drogon/wiki/01-Overview) or [DocsForge](https://drogon.docsforge.com/master/overview/)** +After compiling all of the above source files, we get a very simple web application. This is a good start. **For more information, please visit the [wiki](https://github.com/an-tao/drogon/wiki/ENG-01-Overview) or [DocsForge](https://drogon.docsforge.com/master/overview/)** ## Contributions Every contribution is welcome. Please refer to the [contribution guidelines](CONTRIBUTING.md) for more information. diff --git a/README.zh-CN.md b/README.zh-CN.md index 984deb7a..d040b1ff 100755 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -184,7 +184,7 @@ class User : public drogon::HttpController 另外,你可以发现前面所有的处理函数接口都是异步的,处理器的响应是通过回调对象返回的。这种设计是出于对高性能的考虑,因为在异步模式下,可以使用少量的线程(比如和处理器核心数相等的线程)处理大量的并发请求。 -编译上述的所有源文件后,我们得到了一个非常简单的web应用程序,这是一个不错的开始。**请访问[wiki](https://github.com/an-tao/drogon/wiki/01-Overview)或者[doxiz](https://doxiz.com/drogon/master/overview/)以获取更多的信息** +编译上述的所有源文件后,我们得到了一个非常简单的web应用程序,这是一个不错的开始。**请访问[wiki](https://github.com/an-tao/drogon/wiki/CHN-01-概述)或者[doxiz](https://doxiz.com/drogon/master/overview/)以获取更多的信息** ## 贡献方式