From e4badb8e5f744d1cb9cb6516a9eef5c290368f04 Mon Sep 17 00:00:00 2001 From: Philipp Bunge Date: Thu, 14 Sep 2017 07:48:18 +0200 Subject: [PATCH] Minor fixes to interfaces.md - Fixes the type for the selectedUserId in the example. - Fixes the link to creating an entity adapter. --- docs/entity/interfaces.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/entity/interfaces.md b/docs/entity/interfaces.md index 55294543ea..9a618dd771 100644 --- a/docs/entity/interfaces.md +++ b/docs/entity/interfaces.md @@ -20,13 +20,13 @@ The Entity State is a predefined generic interface for a given entity collection export interface State extends EntityState { // additional entity state properties - selectedUserId: string | null; + selectedUserId: number | null; } ``` ## EntityAdapter -Provides a generic type interface for the provided [entity adapter](./adapter#createEntityAdapter). The entity adapter provides many [collection methods](./adapter.md#adapter-collection-methods) for managing the entity state. +Provides a generic type interface for the provided [entity adapter](./adapter.md#createentityadapter). The entity adapter provides many [collection methods](./adapter.md#adapter-collection-methods) for managing the entity state. Usage: