diff --git a/docs/QuickStart.md b/docs/QuickStart.md
index 46ba4d9f..f240806d 100644
--- a/docs/QuickStart.md
+++ b/docs/QuickStart.md
@@ -96,8 +96,8 @@ engine.Logger = f
3.Engine provide DB connection pool settings.
-* Use `engine.SetIdleConns()` to set idle connections.
-* Use `engine.SetMaxConns()` to set Max connections. This methods support only Go 1.2+.
+* Use `engine.SetMaxIdleConns()` to set idle connections.
+* Use `engine.SetMaxOpenConns()` to set Max connections. This methods support only Go 1.2+.
## 2.Define struct
diff --git a/docs/QuickStartCn.md b/docs/QuickStartCn.md
index 879548e0..2b76ca8e 100644
--- a/docs/QuickStartCn.md
+++ b/docs/QuickStartCn.md
@@ -98,6 +98,11 @@ f, err := os.Create("sql.log")
engine.Logger = f
```
+3.engine内部支持连接池接口。
+
+* 如果需要设置连接池的空闲数大小,可以使用`engine.SetMaxIdleConns()`来实现。
+* 如果需要设置最大打开连接数,则可以使用`engine.SetMaxOpenConns()`来实现。
+
## 2.定义表结构体