aboutsummaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorTom Benner <[email protected]>2014-12-27 14:44:49 -0500
committerTom Benner <[email protected]>2014-12-27 14:44:49 -0500
commit27461a400fc85180ebaa69c02003b3d387f8d120 (patch)
treeb79a5fb6a8de6d21d3d897b7615090c9b4524d2e /system
parente2a09281ec8d60cd47f86caa59d41d3cd945d8bc (diff)
downloadotp-27461a400fc85180ebaa69c02003b3d387f8d120.tar.gz
otp-27461a400fc85180ebaa69c02003b3d387f8d120.tar.bz2
otp-27461a400fc85180ebaa69c02003b3d387f8d120.zip
Add an apostrophe to contractions of "let us"
Diffstat (limited to 'system')
-rw-r--r--system/doc/getting_started/seq_prog.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/doc/getting_started/seq_prog.xml b/system/doc/getting_started/seq_prog.xml
index be43e8d896..2260229560 100644
--- a/system/doc/getting_started/seq_prog.xml
+++ b/system/doc/getting_started/seq_prog.xml
@@ -115,7 +115,7 @@ double(X) ->
entered and there will also be error messages to give you some
idea as to what has gone wrong so you can change what you have
written and try again.</p>
- <p>Now lets run the program.</p>
+ <p>Now let's run the program.</p>
<pre>
4> <input>tut:double(10).</input>
20</pre>
@@ -846,7 +846,7 @@ reverse([], [3,2,1]) =>
write a list manipulating function it is a good idea to check
that one isn't already written for you. (see
<seealso marker="stdlib:lists">lists(3)</seealso>).</p>
- <p>Now lets get back to the cities and temperatures, but take a more
+ <p>Now let's get back to the cities and temperatures, but take a more
structured approach this time. First let's convert the whole list
to Celsius as follows and test the function:</p>
<code type="none">
@@ -1268,7 +1268,7 @@ map(Fun, []) ->
#Fun&lt;erl_eval.5.123085357&gt;
89> <input>lists:map(Add_3, [1,2,3]).</input>
[4,5,6]</pre>
- <p>Now lets print out the temperatures in a list of cities (yet
+ <p>Now let's print out the temperatures in a list of cities (yet
again):</p>
<pre>
90> <input>Print_City = fun({City, {X, Temp}}) -> io:format("~-15w ~w ~w~n",</input>