aboutsummaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2014-01-27 15:14:39 +0100
committerLukas Larsson <[email protected]>2014-01-27 15:14:39 +0100
commit7850ec6f9906eb62b3e33b8b05194944fff569ff (patch)
tree9119bb8580aa0af6c2f33c7cacdd7728dd7ea830 /system
parent75bfbe5a61fa1a1dd204fdb21dc4bf7df8e8003d (diff)
parent042e240c21ef3d4b3567b3158f3c0dbbcf6cacfc (diff)
downloadotp-7850ec6f9906eb62b3e33b8b05194944fff569ff.tar.gz
otp-7850ec6f9906eb62b3e33b8b05194944fff569ff.tar.bz2
otp-7850ec6f9906eb62b3e33b8b05194944fff569ff.zip
Merge branch 'lukas/17/docfixes/OTP-11613'
* lukas/17/docfixes/OTP-11613: system: Fix documentation typoes
Diffstat (limited to 'system')
-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 567d032bb5..3830a34e5a 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>