We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c28ac4e commit e3c35a7Copy full SHA for e3c35a7
frameworks/keyed/fast/src/App.ts
@@ -65,7 +65,7 @@ export class BenchmarkApp extends FASTElement {
65
if (!this.rows) return;
66
67
for (let i = 0; i < this.rows.length; i += 10) {
68
- // make a copy, then update the array using slice. See below for details
+ // make a copy, then update the array using .splice(). See below for details
69
// https://www.fast.design/docs/fast-element/observables-and-state/#observing-arrays
70
let rowItem = Object.create(this.rows[i]);
71
rowItem.label += ' !!!';
0 commit comments