Skip to content

Commit

Permalink
Abbreviations in uppercase (reactjs#197)
Browse files Browse the repository at this point in the history
Minor text change. url to URL
  • Loading branch information
Sudheer Satyanarayana authored and timdorr committed Jul 25, 2016
1 parent a4f21d7 commit aa5fcdf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lessons/06-params/README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# URL Params

Consider the following urls:
Consider the following URLs:

```
/repos/reactjs/react-router
/repos/facebook/react
```

These urls would match a route path like this:
These URLs would match a route path like this:

```
/repos/:userName/:repoName
```

The parts that start with `:` are url parameters whose values will be
The parts that start with `:` are URL parameters whose values will be
parsed out and made available to route components on
`this.props.params[name]`.

Expand Down

0 comments on commit aa5fcdf

Please sign in to comment.