We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0edf8c commit ff1a886Copy full SHA for ff1a886
getting_started/18.markdown
@@ -40,7 +40,7 @@ Alternatively, filters can be used to filter some particular elements out. For e
40
41
```iex
42
iex> require Integer
43
-iex> for n <- 1..4, Integer.odd?(n), do: n * n
+iex> for n <- 1..4, Integer.is_odd(n), do: n * n
44
[1, 9]
45
```
46
0 commit comments