aboutsummaryrefslogtreecommitdiffstats
path: root/system/doc/getting_started/conc_prog.xml
diff options
context:
space:
mode:
authorTom Benner <[email protected]>2014-12-27 14:59:04 -0500
committerTom Benner <[email protected]>2014-12-28 14:39:38 -0500
commit87cd98eb897c1168d7928764f0140a443be21483 (patch)
tree1ece2ad969b10e4aabed285d2dae6a9abecac666 /system/doc/getting_started/conc_prog.xml
parentd57384d0ac779b5a5ab8b5981e86be43b69fd969 (diff)
downloadotp-87cd98eb897c1168d7928764f0140a443be21483.tar.gz
otp-87cd98eb897c1168d7928764f0140a443be21483.tar.bz2
otp-87cd98eb897c1168d7928764f0140a443be21483.zip
Fix grammar and formatting issues
Diffstat (limited to 'system/doc/getting_started/conc_prog.xml')
-rw-r--r--system/doc/getting_started/conc_prog.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/doc/getting_started/conc_prog.xml b/system/doc/getting_started/conc_prog.xml
index 0b7111f183..6c513162c0 100644
--- a/system/doc/getting_started/conc_prog.xml
+++ b/system/doc/getting_started/conc_prog.xml
@@ -170,7 +170,7 @@ spawn(tut15, ping, [3, Pong_PID]),</code>
<code type="none">
tut15:ping(3, Pong_PID)</code>
<p>&lt;0.36.0&gt; is the return value from the <c>start</c> function.</p>
- <p>The process "pong" now does:</p>
+ <p>The process "pong" now does:</p>
<code type="none">
receive
finished ->
@@ -235,7 +235,7 @@ Ping_PID ! pong</code>
Pid ! Message</code>
<p>I.e. <c>Message</c> (any Erlang term) is sent to the process
with identity <c>Pid</c>.</p>
- <p>After sending the message <c>pong</c>, to the process "ping",
+ <p>After sending the message <c>pong</c> to the process "ping",
"pong" calls the <c>pong</c> function again, which causes it to
get back to the <c>receive</c> again and wait for another message.
Now let's look at the process "ping". Recall that it was started
@@ -373,7 +373,7 @@ $ <input>chmod 400 .erlang.cookie</input></pre>
<p>The <c>chmod</c> above make the <c>.erlang.cookie</c> file
accessible only by the owner of the file. This is a requirement.</p>
<p>When you start an Erlang system which is going to talk to other
- Erlang systems, you must give it a name, eg: </p>
+ Erlang systems, you must give it a name, e.g.: </p>
<pre>
$ <input>erl -sname my_name</input></pre>
<p>We will see more details of this later. If you want to