We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d14ad1 commit 0a5ccc7Copy full SHA for 0a5ccc7
docs/docs/basics/routes.md
@@ -85,7 +85,7 @@ Response onRequest(RequestContext context) {
85
// Access the incoming request.
86
final request = context.request;
87
88
- // Access the headers as a `Map<String, String`.
+ // Access the headers as a `Map<String, String>`.
89
final headers = request.headers;
90
91
// Do something with the headers...
@@ -105,7 +105,7 @@ Response onRequest(RequestContext context) {
105
106
107
108
- // Access the query parameters as a `Map<String, String`.
+ // Access the query parameters as a `Map<String, String>`.
109
final params = request.uri.queryParameters;
110
111
// Get the value for the key `name`.
0 commit comments