Skip to content

Commit d1ec41a

Browse files
committed
Ch08: Replace concat with append in one example.
Fixes issue #479.
1 parent 65a8631 commit d1ec41a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ch08.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Container.of(2).map(two => two + 2);
6767
Container.of('flamethrowers').map(s => s.toUpperCase());
6868
// Container('FLAMETHROWERS')
6969

70-
Container.of('bombs').map(concat(' away')).map(prop('length'));
70+
Container.of('bombs').map(append(' away')).map(prop('length'));
7171
// Container(10)
7272
```
7373

0 commit comments

Comments
 (0)