Skip to content

Commit 2ca2eee

Browse files
authored
Merge pull request #284 from medoror/fix/typo
Update 20_comprehensions.ex
2 parents da8c5ac + a03ab27 commit 2ca2eee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/koans/20_comprehensions.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Comprehensions do
22
use Koans
33

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

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

0 commit comments

Comments
 (0)