Skip to content

Commit 9a56e5e

Browse files
committed
Fix a typo in Kernel docs
1 parent ab14855 commit 9a56e5e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/elixir/lib/kernel.ex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1727,7 +1727,7 @@ defmodule Kernel do
17271727
17281728
get_in(opts, [:foo, :bar])
17291729
1730-
Note the in order for this macro to work, the complete path must always
1730+
Note that in order for this macro to work, the complete path must always
17311731
be visible by this macro.
17321732
17331733
## Examples
@@ -1789,7 +1789,7 @@ defmodule Kernel do
17891789
17901790
put_in(opts, [:foo, :bar], :baz)
17911791
1792-
Note the in order for this macro to work, the complete path must always
1792+
Note that in order for this macro to work, the complete path must always
17931793
be visible by this macro. For more information about the supported path
17941794
expressions, please check `get_in/1` docs.
17951795
@@ -1822,7 +1822,7 @@ defmodule Kernel do
18221822
18231823
update_in(opts, [:foo, :bar], &(&1 + 1))
18241824
1825-
Note the in order for this macro to work, the complete path must always
1825+
Note that in order for this macro to work, the complete path must always
18261826
be visible by this macro. For more information about the supported path
18271827
expressions, please check `get_in/1` docs.
18281828
@@ -1855,7 +1855,7 @@ defmodule Kernel do
18551855
18561856
get_and_update_in(opts, [:foo, :bar], &{&1, &1 + 1})
18571857
1858-
Note the in order for this macro to work, the complete path must always
1858+
Note that in order for this macro to work, the complete path must always
18591859
be visible by this macro. For more information about the supported path
18601860
expressions, please check `get_in/1` docs.
18611861

0 commit comments

Comments
 (0)