Skip to content

Commit

Permalink
fix parameter order
Browse files Browse the repository at this point in the history
  • Loading branch information
janl committed Apr 15, 2011
1 parent 1166de7 commit e80b429
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion editions/1/de/show.html
Expand Up @@ -135,7 +135,7 @@ <h4 id="parameters">Query Parameters</h4>
<p>The request object (including helpfully parsed versions of query parameters) is available to show functions as well. By way of illustration, here’s a show function that returns different data based on the URL query parameters:

<pre>
function(req, doc) {
function(doc, req) {
return "&lt;p&gt;Aye aye, " + req.parrot + "!&lt;/p&gt;";
}
</pre>
Expand Down
2 changes: 1 addition & 1 deletion editions/1/en/show.html
Expand Up @@ -135,7 +135,7 @@ <h4 id="parameters">Query Parameters</h4>
<p>The request object (including helpfully parsed versions of query parameters) is available to show functions as well. By way of illustration, here’s a show function that returns different data based on the URL query parameters:

<pre>
function(req, doc) {
function(doc, req) {
return "&lt;p&gt;Aye aye, " + req.parrot + "!&lt;/p&gt;";
}
</pre>
Expand Down
2 changes: 1 addition & 1 deletion editions/1/fr/show.html
Expand Up @@ -135,7 +135,7 @@ <h4 id="parameters">Query Parameters</h4>
<p>The request object (including helpfully parsed versions of query parameters) is available to show functions as well. By way of illustration, here’s a show function that returns different data based on the URL query parameters:

<pre>
function(req, doc) {
function(doc, req) {
return "&lt;p&gt;Aye aye, " + req.parrot + "!&lt;/p&gt;";
}
</pre>
Expand Down

0 comments on commit e80b429

Please sign in to comment.