Skip to content

Commit

Permalink
修改错别字 (elixirschool#1630)
Browse files Browse the repository at this point in the history
  • Loading branch information
zlfera authored and kenspirit committed Nov 29, 2018
1 parent ca3eb8a commit 024e128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zh-hans/lessons/basics/comprehensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ iex> for x <- 1..10, is_even(x), do: x
[2, 4, 6, 8, 10]
```

可生成器一样,我们也可以使用多个过滤器。我们修改上面的例子,只返回所有是偶数并且能被 3 整数的值:
和生成器一样,我们也可以使用多个过滤器。我们修改上面的例子,只返回所有是偶数并且能被 3 整数的值:

```elixir
import Integer
Expand Down

0 comments on commit 024e128

Please sign in to comment.