Merge pull request #284 from medoror/fix/typo

Update 20_comprehensions.ex
This commit is contained in:
Jay Hayes
2023-08-07 07:24:27 -05:00
committed by GitHub

View File

@@ -1,7 +1,7 @@
defmodule Comprehensions do defmodule Comprehensions do
use Koans 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 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) == ___ assert (for n <- [1, 2, 3, 4], do: n * n) == ___