File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Methods
17
17
18
18
### ` transitionTo(routeNameOrPath, [params[, query]]) `
19
19
20
- Programatically transition to a new route.
20
+ Programmatically transition to a new route.
21
21
22
22
#### Examples
23
23
@@ -29,7 +29,7 @@ Router.transitionTo('/users/10?showAge=true');
29
29
30
30
### ` replaceWith(routeNameOrPath, [params[, query]]) `
31
31
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
33
33
entry into the browser history.
34
34
35
35
#### Examples
@@ -42,7 +42,7 @@ Router.replaceWith('/users/10?showAge=true');
42
42
43
43
### ` goBack() `
44
44
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
46
46
entry from the browser history.
47
47
48
48
#### Example
@@ -63,4 +63,3 @@ need to build components similar to `Link`.
63
63
< Route name= " user" path= " users/:userId" / >
64
64
Router .makeHref (' user' , {userId: 123 }); // "users/123"
65
65
```
66
-
You can’t perform that action at this time.
0 commit comments