angular / angular-update-guide

An interactive guide to updating the version of Angular in your apps

Home Page:https://update.angular.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wrong instruction for Migration to v17

yunuseon opened this issue · comments

Affected
Advanced Recommendations

Problem
The current recommendation

Use update instead of mutate in Angular Signals. For example items.mutate(itemsArray => itemsArray.push(newItem)); will now be items.update(itemsArray => [itemsArray, …newItem]);

Obviously, the array should be spreaded instead of the new item 😁