Skip to content

Commit d1edb71

Browse files
Yogummalerba
authored andcommitted
docs: fix rxResource example (angular#63484)
PR Close angular#63484
1 parent 6e1599d commit d1edb71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adev/src/content/ecosystem/rxjs-interop/signals-interop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export class UserProfile {
125125

126126
// The `stream` property expects a factory function that returns
127127
// a data stream as an RxJS Observable.
128-
stream: ({userId}) => this.userData.load(userId),
128+
stream: ({params}) => this.userData.load(params.userId),
129129
});
130130
}
131131
```

0 commit comments

Comments
 (0)