Skip to content

Commit 1ea8dab

Browse files
committed
Minor typos
1 parent ca96f86 commit 1ea8dab

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/api/Router.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Methods
1717

1818
### `transitionTo(routeNameOrPath, [params[, query]])`
1919

20-
Programatically transition to a new route.
20+
Programmatically transition to a new route.
2121

2222
#### Examples
2323

@@ -29,7 +29,7 @@ Router.transitionTo('/users/10?showAge=true');
2929

3030
### `replaceWith(routeNameOrPath, [params[, query]])`
3131

32-
Programatically replace current route with a new route. Does not add an
32+
Programmatically replace current route with a new route. Does not add an
3333
entry into the browser history.
3434

3535
#### Examples
@@ -42,7 +42,7 @@ Router.replaceWith('/users/10?showAge=true');
4242

4343
### `goBack()`
4444

45-
Programatically go back to the last route and remove the most recent
45+
Programmatically go back to the last route and remove the most recent
4646
entry from the browser history.
4747

4848
#### Example
@@ -63,4 +63,3 @@ need to build components similar to `Link`.
6363
<Route name="user" path="users/:userId"/>
6464
Router.makeHref('user', {userId: 123}); // "users/123"
6565
```
66-

0 commit comments

Comments
 (0)