Skip to content

Commit 7f84211

Browse files
committed
Fix all "evalute" typos
1 parent 65e67cd commit 7f84211

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lib/elixir/lib/code.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ defmodule Code do
6464
end
6565

6666
@doc """
67-
Evalutes the contents given by string. The second argument is the
67+
Evaluates the contents given by string. The second argument is the
6868
binding (which should be a keyword) followed by a keyword list of
6969
environment options. Those options can be:
7070
@@ -114,7 +114,7 @@ defmodule Code do
114114
end
115115

116116
@doc """
117-
Evalutes the quoted contents.
117+
Evaluates the quoted contents.
118118
119119
This function accepts a list of environment options.
120120
Check `Code.eval_string` for more information.

lib/elixir/lib/module.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ defmodule Module do
2828
end
2929

3030
@doc """
31-
Evalutes the quotes contents in the given module context.
31+
Evaluates the quoted contents in the given module's context.
3232
3333
A list of environment options can also be given as argument.
34-
Check `Code.eval_string` for more information.
34+
See `Code.eval_string` for more information.
3535
3636
Raises an error if the module was already compiled.
3737

lib/iex/lib/iex.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ defmodule IEx do
9292
9393
## Expressions in IEx
9494
95-
As an interactive shell, IEx evalutes expressions. This has some
95+
As an interactive shell, IEx evaluates expressions. This has some
9696
interesting consequences that are worth discussing.
9797
9898
The first one is that the code is truly evaluated and not compiled.

0 commit comments

Comments
 (0)