Skip to content

Commit 662ecb5

Browse files
committed
Update titles
1 parent 196b4cf commit 662ecb5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/ArrayEvaluationDemo.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const ArrayEvaluationDemo: React.FC = ({
7676
from: 0,
7777
to: 1,
7878
progress: i * 8 + 8,
79-
narrationTitle: 'Map to blue',
79+
narrationTitle: 'map(&:blue!)',
8080
narrationDescription: `Item ${i}`,
8181
})),
8282
...Array(7)
@@ -87,15 +87,15 @@ const ArrayEvaluationDemo: React.FC = ({
8787
to: 2,
8888
progress: 64 + i * 8,
8989
explode: !isEven(i),
90-
narrationTitle: `Select even?`,
90+
narrationTitle: `select(&:even?)`,
9191
narrationDescription: `Item ${i}: ${isEven(i) ? 'yes' : 'no'}`,
9292
})),
9393
...[0, 2, 4].map((i, idx) => ({
9494
pos: i,
9595
from: 2,
9696
to: 3,
9797
progress: 128 + idx * 8,
98-
narrationTitle: `Take 3`,
98+
narrationTitle: `take(3)`,
9999
narrationDescription: `Item ${i}`,
100100
})),
101101
{

0 commit comments

Comments
 (0)