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 a4f21d7 commit aa5fcdfCopy full SHA for aa5fcdf
lessons/06-params/README.md
@@ -1,19 +1,19 @@
1
# URL Params
2
3
-Consider the following urls:
+Consider the following URLs:
4
5
```
6
/repos/reactjs/react-router
7
/repos/facebook/react
8
9
10
-These urls would match a route path like this:
+These URLs would match a route path like this:
11
12
13
/repos/:userName/:repoName
14
15
16
-The parts that start with `:` are url parameters whose values will be
+The parts that start with `:` are URL parameters whose values will be
17
parsed out and made available to route components on
18
`this.props.params[name]`.
19
0 commit comments