aboutsummaryrefslogtreecommitdiffstats
path: root/erts
diff options
context:
space:
mode:
authorHenrik Nord <[email protected]>2012-12-04 12:16:52 +0100
committerHenrik Nord <[email protected]>2012-12-04 12:16:55 +0100
commit33334fe5f0527ffd02f578601546717773fd55c9 (patch)
tree8a6fcd735b8ffbaa6a09b1a8e90300d11c14a0f9 /erts
parent7970cc9f8dd44fe236d38867835d874ac53ceb9c (diff)
parent2efdc7b6867e53760e870cdcb4821f42cf96d417 (diff)
downloadotp-33334fe5f0527ffd02f578601546717773fd55c9.tar.gz
otp-33334fe5f0527ffd02f578601546717773fd55c9.tar.bz2
otp-33334fe5f0527ffd02f578601546717773fd55c9.zip
Merge branch 'ta/docsmaster'
* ta/docsmaster: Fix various doc typos for R16 Fix various typos in HOWTO/ for R16 Fix various comment typos for R16 OTP-10611
Diffstat (limited to 'erts')
-rw-r--r--erts/emulator/beam/code_ix.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/code_ix.h b/erts/emulator/beam/code_ix.h
index bc10e956f5..e2bd0da112 100644
--- a/erts/emulator/beam/code_ix.h
+++ b/erts/emulator/beam/code_ix.h
@@ -18,7 +18,7 @@
*/
/* Description:
- * This is the interface that facilitate changing the beam code
+ * This is the interface that facilitates changing the beam code
* (load,upgrade,delete) while allowing executing Erlang processes to
* access the code without any locks or other expensive memory barriers.
*
@@ -35,7 +35,7 @@
* The third code index is not explicitly used. It can be thought of as
* the "previous active" or the "next staging" index. It is needed to make
* sure that we do not reuse a code index for staging until we are sure
- * that no executing BIFs are still referring it.
+ * that no executing BIFs are still referencing it.
* We could get by with only two (0 and 1), but that would require that we
* must wait for all schedulers to re-schedule before each code change
* operation can start staging.