From eb04351e977a84df3281f44ac247c5c989acf7f9 Mon Sep 17 00:00:00 2001 From: Alexander Travov Date: Sat, 11 Apr 2015 01:22:42 +0300 Subject: [PATCH] Fix docstring for m.route.parseQueryString --- docs/mithril.route.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/mithril.route.md b/docs/mithril.route.md index af9f9390..ceeb81a2 100644 --- a/docs/mithril.route.md +++ b/docs/mithril.route.md @@ -273,17 +273,17 @@ where: #### m.route.parseQueryString - **Object parseQueryString(String data)** + **Object parseQueryString(String querystring)** - Deserializes an object into from a URI encoded querystring representation, following the same deserialization conventions as [URI.js](http://http://medialize.github.io/URI.js/) + Deserializes an object from an URI encoded querystring representation, following the same deserialization conventions as [URI.js](http://http://medialize.github.io/URI.js/) - - **Object data** + - **String querystring** - An object to be deserialized + An URI encoded querystring to be deserialized - - **returns String querystring** + - **returns Object data** - The deserialized representation of the input data + The deserialized object ---