Skip to content

Commit 9279000

Browse files
Correct use of "who" (#11925)
1 parent 54bfa6b commit 9279000

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/elixir/lib/application.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ defmodule Application do
552552
Reads the application environment at compilation time from a macro.
553553
554554
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
556556
dynamically.
557557
558558
It expects a `Macro.Env` as first argument, where the `Macro.Env` is
@@ -597,7 +597,7 @@ defmodule Application do
597597
or raises.
598598
599599
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
601601
dynamically.
602602
603603
It expects a `Macro.Env` as first argument, where the `Macro.Env` is

lib/elixir/lib/task.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ defmodule Task do
195195
This provides more visibility and allows you to control how those tasks are
196196
terminated when a node shuts down. That might look something like
197197
`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
199199
the task is the supervisor, as the supervisor is the one effectively starting it.
200200
201201
To track the relationship between your code and the task, we use the `$callers`

0 commit comments

Comments
 (0)