This commit is contained in:
Yichun Zhang (agentzh) 2015-08-12 17:54:56 +08:00
Родитель cc2df46d42
Коммит 5e45843126
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -2912,7 +2912,7 @@ Here is a basic example:
res = ngx.location.capture(uri)
```
Returns a Lua table with three slots (`res.status`, `res.header`, `res.body`, and `res.truncated`).
Returns a Lua table with 4 slots: `res.status`, `res.header`, `res.body`, and `res.truncated`.
`res.status` holds the response status code for the subrequest response.

Просмотреть файл

@ -2349,7 +2349,7 @@ Here is a basic example:
res = ngx.location.capture(uri)
</geshi>
Returns a Lua table with three slots (<code>res.status</code>, <code>res.header</code>, <code>res.body</code>, and <code>res.truncated</code>).
Returns a Lua table with 4 slots: <code>res.status</code>, <code>res.header</code>, <code>res.body</code>, and <code>res.truncated</code>.
<code>res.status</code> holds the response status code for the subrequest response.