From 70a31e58476ff08ba0f7537d223cd972774ab30f Mon Sep 17 00:00:00 2001 From: Mike Drakoulelis Date: Mon, 14 Aug 2023 16:30:09 +0300 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Brandon Roberts --- .../ngrx.io/content/guide/data/entity-collection-service.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/ngrx.io/content/guide/data/entity-collection-service.md b/projects/ngrx.io/content/guide/data/entity-collection-service.md index 673b50ca05..ba30ad0243 100644 --- a/projects/ngrx.io/content/guide/data/entity-collection-service.md +++ b/projects/ngrx.io/content/guide/data/entity-collection-service.md @@ -159,8 +159,8 @@ The demo application always calls these command methods with copies of the entit All _command methods_ return `void` or an `Observable`. A core principle of the _redux pattern_ is that _commands_ never return a value. They just _do things_ that have side-effects. -Thus, the action is only fired when the command is invoked, and re-subscribing to a command's returned `Observable` will not -create another action. +Thus, the action is only dispatched when the command is invoked, and re-subscribing to a command's returned `Observable` will not +dispatch another action. Rather than expect a result from the command, you subscribe to a _selector$_ property that reflects