Skip to content

Commit

Permalink
Docs: fix query string parameter name (from Disqus comment by Brian Ros)
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Hilton committed May 28, 2011
1 parent a1cfafc commit 5eaafc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions documentation/manual/controllers.textile
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,9 @@ bc. public static void show(Map<String, String> client) {

A query string like the following:

bc. ?user.name=John&user.phone=111-1111&user.phone=222-2222
bc. ?client.name=John&client.phone=111-1111&client.phone=222-2222

Would bind the client variable to a map with two elements. The first element with key "name" and value "John", and the second with key "phone" and value "111-1111, 222-2222"
would bind the client variable to a map with two elements. The first element with key **name** and value **John**, and the second with key **phone** and value **111-1111, 222-2222**.

h3. POJO object binding

Expand Down

0 comments on commit 5eaafc2

Please sign in to comment.