aboutsummaryrefslogtreecommitdiffstats
path: root/system/doc/getting_started
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2014-01-27 11:16:01 +0100
committerLukas Larsson <[email protected]>2014-01-27 15:03:02 +0100
commit042e240c21ef3d4b3567b3158f3c0dbbcf6cacfc (patch)
treecaf76acf55086ffd422fccb7047a6f0931a9fe2f /system/doc/getting_started
parent25237481ccccd3ddfa74582dc267632ad618ba30 (diff)
downloadotp-042e240c21ef3d4b3567b3158f3c0dbbcf6cacfc.tar.gz
otp-042e240c21ef3d4b3567b3158f3c0dbbcf6cacfc.tar.bz2
otp-042e240c21ef3d4b3567b3158f3c0dbbcf6cacfc.zip
system: Fix documentation typoes
Diffstat (limited to 'system/doc/getting_started')
-rw-r--r--system/doc/getting_started/seq_prog.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/doc/getting_started/seq_prog.xml b/system/doc/getting_started/seq_prog.xml
index 96876ea513..1c7671496b 100644
--- a/system/doc/getting_started/seq_prog.xml
+++ b/system/doc/getting_started/seq_prog.xml
@@ -408,7 +408,7 @@ list_length([First | Rest]) ->
or "structs" in other languages and we use lists when we want to
represent things which have varying sizes, (i.e. where we would
use linked lists in other languages).</p>
- <p>Erlang does not have a string date type, instead strings can be
+ <p>Erlang does not have a string data type, instead strings can be
represented by lists of ASCII characters. So the list
<c>[97,98,99]</c> is equivalent to "abc". The Erlang shell is
"clever" and guesses the what sort of list we mean and outputs it
@@ -1031,7 +1031,7 @@ month_length(Year, Month) ->
<title>Built In Functions (BIFs)</title>
<p>Built in functions BIFs are functions which for some reason is
built in to the Erlang virtual machine. BIFs often implement
- functionality that is impossible to implement in Erlang or is to
+ functionality that is impossible to implement in Erlang or is too
inefficient to implement in Erlang. Some BIFs can be called
by use of the function name only but they are by default belonging
to the erlang module so for example the call to the BIF <c>trunc</c>