From 35029ad7960ae3802203ed5a03c1ba9792f3b08d Mon Sep 17 00:00:00 2001
From: Redkale <22250530@qq.com>
Date: Mon, 18 Jul 2016 21:06:19 +0800
Subject: [PATCH]
---
src/org/redkale/net/http/HttpRequest.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/org/redkale/net/http/HttpRequest.java b/src/org/redkale/net/http/HttpRequest.java
index f39a19ee3..038d4f9b3 100644
--- a/src/org/redkale/net/http/HttpRequest.java
+++ b/src/org/redkale/net/http/HttpRequest.java
@@ -20,7 +20,8 @@ import org.redkale.util.ByteArray;
* 同时提供json的解析接口: public Object getJsonParameter(Class clazz, String name)
* RedKale提倡带简单的参数的GET请求采用类似REST风格, 因此提供了 getRequstURIPath 系列接口。
* 例如简单的翻页查询
- * /pipes/record/query/offset:0/limit:20 获取页号: int offset = request.getRequstURIPath("offset:", 0);
+ * /pipes/record/query/offset:0/limit:20
+ * 获取页号: int offset = request.getRequstURIPath("offset:", 0);
* 获取行数: int limit = request.getRequstURIPath("limit:", 10);
*
* 详情见: http://redkale.org