File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ defmodule Code do
57
57
58
58
@ doc """
59
59
Evaluates the contents given by `string`. The second argument is
60
- a keyword list of bindings, followed by a keyword list of
60
+ a keyword list of variable bindings, followed by a keyword list of
61
61
environment options. Those options can be:
62
62
63
63
* `:file` - the file to be considered in the evaluation
@@ -82,8 +82,8 @@ defmodule Code do
82
82
`:macros` will no longer auto-import `Kernel` macros like `if`, `case`,
83
83
etc.
84
84
85
- Returns a tuple of the form `{ value, bindings }`,
86
- where `value` is the the value returned from evaluating `string`; `bindings `
85
+ Returns a tuple of the form `{ value, binding }`,
86
+ where `value` is the the value returned from evaluating `string`; `binding `
87
87
is a keyword list with the value of all variable bindings after evaluating
88
88
`string`. If an error occurs while evaluating `string` an exception will be raised.
89
89
You can’t perform that action at this time.
0 commit comments