From 75ab95febea6c3d22f395a4bf986507673bb6c57 Mon Sep 17 00:00:00 2001 From: Constantin Rack Date: Sun, 9 Aug 2015 17:42:40 +0200 Subject: Fix typo --- lib/compiler/src/genop.tab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compiler/src/genop.tab b/lib/compiler/src/genop.tab index 8124729b35..253fd2794c 100755 --- a/lib/compiler/src/genop.tab +++ b/lib/compiler/src/genop.tab @@ -164,7 +164,7 @@ 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 -- cgit v1.2.3 From a1074f44ce2f83cb97a713a183c0335ff670b06a Mon Sep 17 00:00:00 2001 From: Constantin Rack Date: Sun, 9 Aug 2015 21:08:42 +0200 Subject: Fix another small typo --- lib/compiler/src/genop.tab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compiler/src/genop.tab b/lib/compiler/src/genop.tab index 253fd2794c..8464af3dd0 100755 --- a/lib/compiler/src/genop.tab +++ b/lib/compiler/src/genop.tab @@ -169,7 +169,7 @@ BEAM_FORMAT_NUMBER=0 26: wait_timeout/2 # -# Arithmethic opcodes. +# Arithmetic opcodes. # 27: -m_plus/4 28: -m_minus/4 -- cgit v1.2.3 From 1d967bb8406dfd475265520b24ac4bcf099a3df1 Mon Sep 17 00:00:00 2001 From: Constantin Rack Date: Mon, 24 Aug 2015 09:41:12 +0200 Subject: Fix typo: message to send is in x(1) not x(0) --- lib/compiler/src/genop.tab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compiler/src/genop.tab b/lib/compiler/src/genop.tab index 8464af3dd0..8f7b5add1d 100755 --- a/lib/compiler/src/genop.tab +++ b/lib/compiler/src/genop.tab @@ -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 -- cgit v1.2.3 From 363b2038feb3c668395c6c145d83910a04cebea5 Mon Sep 17 00:00:00 2001 From: Constantin Rack Date: Tue, 25 Aug 2015 10:35:03 +0200 Subject: Fix typo --- lib/compiler/src/genop.tab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compiler/src/genop.tab b/lib/compiler/src/genop.tab index 8f7b5add1d..ab227e5452 100755 --- a/lib/compiler/src/genop.tab +++ b/lib/compiler/src/genop.tab @@ -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 -- cgit v1.2.3 From bba382165f48cace97ac64e580d533d998c0fe80 Mon Sep 17 00:00:00 2001 From: Constantin Rack Date: Fri, 28 Aug 2015 18:30:30 +0200 Subject: Fix typo in call_last/3 spec --- lib/compiler/src/genop.tab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compiler/src/genop.tab b/lib/compiler/src/genop.tab index ab227e5452..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. -- cgit v1.2.3