@@ -1727,7 +1727,7 @@ defmodule Kernel do
1727
1727
1728
1728
get_in(opts, [:foo, :bar])
1729
1729
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
1731
1731
be visible by this macro.
1732
1732
1733
1733
## Examples
@@ -1789,7 +1789,7 @@ defmodule Kernel do
1789
1789
1790
1790
put_in(opts, [:foo, :bar], :baz)
1791
1791
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
1793
1793
be visible by this macro. For more information about the supported path
1794
1794
expressions, please check `get_in/1` docs.
1795
1795
@@ -1822,7 +1822,7 @@ defmodule Kernel do
1822
1822
1823
1823
update_in(opts, [:foo, :bar], &(&1 + 1))
1824
1824
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
1826
1826
be visible by this macro. For more information about the supported path
1827
1827
expressions, please check `get_in/1` docs.
1828
1828
@@ -1855,7 +1855,7 @@ defmodule Kernel do
1855
1855
1856
1856
get_and_update_in(opts, [:foo, :bar], &{&1, &1 + 1})
1857
1857
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
1859
1859
be visible by this macro. For more information about the supported path
1860
1860
expressions, please check `get_in/1` docs.
1861
1861
0 commit comments