aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler
diff options
context:
space:
mode:
authorZandra <[email protected]>2015-09-11 10:17:10 +0200
committerZandra <[email protected]>2015-09-11 10:17:10 +0200
commit6fd0f00a4a5420621d5a12c28024a1f21fe8e14d (patch)
tree7bbbe708b1c1b00e43fdc17f0efad5de03c13cc0 /lib/compiler
parent9c34627bcc594c8c3bfb5451cff54e284eec5f72 (diff)
parentbba382165f48cace97ac64e580d533d998c0fe80 (diff)
downloadotp-6fd0f00a4a5420621d5a12c28024a1f21fe8e14d.tar.gz
otp-6fd0f00a4a5420621d5a12c28024a1f21fe8e14d.tar.bz2
otp-6fd0f00a4a5420621d5a12c28024a1f21fe8e14d.zip
Merge branch 'c-rack/fix-typo3' into maint
* c-rack/fix-typo3: Fix typo in call_last/3 spec Fix typo Fix typo: message to send is in x(1) not x(0) Fix another small typo Fix typo
Diffstat (limited to 'lib/compiler')
-rwxr-xr-xlib/compiler/src/genop.tab10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/compiler/src/genop.tab b/lib/compiler/src/genop.tab
index 8124729b35..3a877f2403 100755
--- a/lib/compiler/src/genop.tab
+++ b/lib/compiler/src/genop.tab
@@ -45,7 +45,7 @@ BEAM_FORMAT_NUMBER=0
## Save the next instruction as the return address in the CP register.
4: call/2
-## @spec call_last Arity Label Dellocate
+## @spec call_last Arity Label Deallocate
## @doc Deallocate and do a tail recursive call to the function at Label.
## Do not update the CP register.
## Before the call deallocate Deallocate words of stack.
@@ -137,7 +137,7 @@ BEAM_FORMAT_NUMBER=0
# Sending & receiving.
#
## @spec send
-## @doc Send argument in x(0) as a message to the destination process in x(0).
+## @doc Send argument in x(1) as a message to the destination process in x(0).
## The message in x(1) ends up as the result of the send in x(0).
20: send/0
@@ -164,12 +164,12 @@ BEAM_FORMAT_NUMBER=0
25: wait/1
## @spec wait_timeout Lable Time
-## @doc Sets up a timeout of Time milllisecons and saves the address of the
+## @doc Sets up a timeout of Time milliseconds and saves the address of the
## following instruction as the entry point if the timeout triggers.
26: wait_timeout/2
#
-# Arithmethic opcodes.
+# Arithmetic opcodes.
#
27: -m_plus/4
28: -m_minus/4
@@ -316,7 +316,7 @@ BEAM_FORMAT_NUMBER=0
66: get_tuple_element/3
## @spec set_tuple_element NewElement Tuple Position
-## @doc Update the element at postition Position of the tuple Tuple
+## @doc Update the element at position Position of the tuple Tuple
## with the new element NewElement.
67: set_tuple_element/3