File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -552,7 +552,7 @@ defmodule Application do
552
552
Reads the application environment at compilation time from a macro.
553
553
554
554
Typically, developers will use `compile_env/3`. This function must
555
- only be invoked from macros who wish to read the compilation environment
555
+ only be invoked from macros which aim to read the compilation environment
556
556
dynamically.
557
557
558
558
It expects a `Macro.Env` as first argument, where the `Macro.Env` is
@@ -597,7 +597,7 @@ defmodule Application do
597
597
or raises.
598
598
599
599
Typically, developers will use `compile_env!/2`. This function must
600
- only be invoked from macros who wish to read the compilation environment
600
+ only be invoked from macros which aim to read the compilation environment
601
601
dynamically.
602
602
603
603
It expects a `Macro.Env` as first argument, where the `Macro.Env` is
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ defmodule Task do
195
195
This provides more visibility and allows you to control how those tasks are
196
196
terminated when a node shuts down. That might look something like
197
197
`Task.Supervisor.start_child(MySupervisor, task_function)`. This means
198
- that, although your code is the one who invokes the task, the actual ancestor of
198
+ that, although your code is the one invoking the task, the actual ancestor of
199
199
the task is the supervisor, as the supervisor is the one effectively starting it.
200
200
201
201
To track the relationship between your code and the task, we use the `$callers`
You can’t perform that action at this time.
0 commit comments