From f6d6d5633d160ba13c243ebb46e0d8629e7d1e03 Mon Sep 17 00:00:00 2001 From: jdegand <70610011+jdegand@users.noreply.github.com> Date: Fri, 24 Nov 2023 14:52:16 -0500 Subject: [PATCH] fix: detection typo --- docs/src/content/docs/challenges/angular/5-crud.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/content/docs/challenges/angular/5-crud.md b/docs/src/content/docs/challenges/angular/5-crud.md index d79eec6..4fde176 100644 --- a/docs/src/content/docs/challenges/angular/5-crud.md +++ b/docs/src/content/docs/challenges/angular/5-crud.md @@ -39,7 +39,7 @@ this.todos[todoUpdated.id - 1] = todoUpdated; this.todos = [...this.todos.filter((t) => t.id !== todoUpdated.id), todoUpdated]; ``` -- Use **ChangeDectection.OnPush** +- Use **ChangeDetection.OnPush** ### Step 2: Improve