From 3abcc7d3c3f6e4e55ca96afb92f3743c6936f6a7 Mon Sep 17 00:00:00 2001 From: jasonhodges Date: Wed, 29 May 2019 13:10:44 -0600 Subject: [PATCH] feat(router-store) Add base router selectors - link out to custom serializer --- projects/ngrx.io/content/guide/router-store/selectors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/ngrx.io/content/guide/router-store/selectors.md b/projects/ngrx.io/content/guide/router-store/selectors.md index 8a4c574f9f..9bff096e5f 100644 --- a/projects/ngrx.io/content/guide/router-store/selectors.md +++ b/projects/ngrx.io/content/guide/router-store/selectors.md @@ -5,7 +5,7 @@ The `getSelectors` method supplied within `@ngrx/router-store` provides function The `getSelectors` method takes a selector function as its only argument to select the piece of state where the router state is being stored. The example below shows how to provide a selector for the top level `router` key in your state object. -**Note:** The `getSelectors` method works with the `routerReducer` provided by `@ngrx/router-store`. If you use a custom serializer, you'll need to provide your own selectors if they do not adhere to `RouterReducerState`. +**Note:** The `getSelectors` method works with the `routerReducer` provided by `@ngrx/router-store`. If you use a [custom serializer](guide/router-store/configuration#custom-router-state-serializer), you'll need to provide your own selectors if they do not adhere to `RouterReducerState`. Usage: