Skip to content

Commit 3872bf5

Browse files
committed
Renaming the param on the ES5 example.
1 parent b0e5880 commit 3872bf5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/pipeline/data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ route: {
8484
data (transition) {
8585
var userId = transition.to.params.userId
8686
return Promise.all([
87-
userService.get(id),
88-
postsService.getForUser(id)
87+
userService.get(userId),
88+
postsService.getForUser(userId)
8989
]).then(function (data) {
9090
return {
9191
user: data[0],

0 commit comments

Comments
 (0)