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