Skip to content

Commit

Permalink
Merge pull request #289 from carpentries-incubator/anenadic-issue-281
Browse files Browse the repository at this point in the history
Typo fix. Fixes #281.
  • Loading branch information
douglowe authored Dec 11, 2023
2 parents 71c5857 + b4c32c6 commit 3696c9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _episodes/34-functional-programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ before aggregating all intermediate results into the final result.
### Mapping
`map(f, C)` is a function takes another function `f()` and a collection `C` of data items as inputs.
Calling `map(f, L)` applies the function `f(x)` to every data item `x` in a collection `C`
Calling `map(f, C)` applies the function `f(x)` to every data item `x` in a collection `C`
and returns the resulting values as a new collection of the same size.
This is a simple mapping that takes a list of names and
Expand Down

0 comments on commit 3696c9b

Please sign in to comment.