From 881c6bd92c6e29dbcd35c57b4bc46cc46d659f9c Mon Sep 17 00:00:00 2001 From: Kadamas <50961840+Kadamas@users.noreply.github.com> Date: Mon, 14 Oct 2019 20:15:24 +0300 Subject: [PATCH] docs(data): remove duplicate "the" in entity metadata description (#2166) --- projects/ngrx.io/content/guide/data/entity-metadata.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/ngrx.io/content/guide/data/entity-metadata.md b/projects/ngrx.io/content/guide/data/entity-metadata.md index 380b109bab..dbaf1edfe5 100644 --- a/projects/ngrx.io/content/guide/data/entity-metadata.md +++ b/projects/ngrx.io/content/guide/data/entity-metadata.md @@ -110,7 +110,7 @@ In the accompanying demonstration app, the user can filter _heroes_ by name and We felt this common scenario is worth building into the NgRx Data library. So every entity can have an _optional_ filter function. -Each collection's `filteredEntities` selector applies the filter function to the collection, based on the user's filtering criteria, which are held in the the stored entity collection's `filter` property. +Each collection's `filteredEntities` selector applies the filter function to the collection, based on the user's filtering criteria, which are held in the stored entity collection's `filter` property. If there is no filter function, the `filteredEntities` selector is the same as the `selectAll` selector, which returns all entities in the collection.