Skip to content

Commit

Permalink
fix: typo (#2615)
Browse files Browse the repository at this point in the history
request.query has a mistake on comment
  • Loading branch information
yolopunk authored and popomore committed May 31, 2018
1 parent c91e67c commit 48c6d3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/extend/request.js
Expand Up @@ -181,7 +181,7 @@ module.exports = {
* ```js
* GET http://127.0.0.1:7001?name=Foo&age=20&age=21
* this.query
* => { 'name': 'Foo', 'age': 20 }
* => { 'name': 'Foo', 'age': '20' }
*
* GET http://127.0.0.1:7001?a=b&a=c&o[foo]=bar&b[]=1&b[]=2&e=val
* this.query
Expand Down

0 comments on commit 48c6d3c

Please sign in to comment.