Skip to content

Commit

Permalink
Merge pull request #284 from medoror/fix/typo
Browse files Browse the repository at this point in the history
Update 20_comprehensions.ex
  • Loading branch information
iamvery authored Aug 7, 2023
2 parents da8c5ac + a03ab27 commit 2ca2eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/koans/20_comprehensions.ex
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Comprehensions do
use Koans

@intro "A comprehension is made of three parts: generators, filters, and collectibles. We will look at how these interact with eachother"
@intro "A comprehension is made of three parts: generators, filters, and collectibles. We will look at how these interact with each other"

koan "The generator, `n <- [1, 2, 3, 4]`, is providing the values for our comprehension" do
assert (for n <- [1, 2, 3, 4], do: n * n) == ___
Expand Down

0 comments on commit 2ca2eee

Please sign in to comment.