aboutsummaryrefslogtreecommitdiffstats
path: root/system/doc/getting_started/conc_prog.xml
diff options
context:
space:
mode:
authorTom Benner <[email protected]>2014-12-27 14:54:27 -0500
committerTom Benner <[email protected]>2014-12-28 14:37:52 -0500
commitb397ab65ea094859cab2d31d6444101bc7238b9a (patch)
treedb2b88205ad3f380f350db661dcec0ebf56284d4 /system/doc/getting_started/conc_prog.xml
parent59ce273905f74f5dc435e821dd62944c7a6ea3f7 (diff)
downloadotp-b397ab65ea094859cab2d31d6444101bc7238b9a.tar.gz
otp-b397ab65ea094859cab2d31d6444101bc7238b9a.tar.bz2
otp-b397ab65ea094859cab2d31d6444101bc7238b9a.zip
Use colons before <code> when appropriate
Diffstat (limited to 'system/doc/getting_started/conc_prog.xml')
-rw-r--r--system/doc/getting_started/conc_prog.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/doc/getting_started/conc_prog.xml b/system/doc/getting_started/conc_prog.xml
index 9a08d38d7f..580ba79403 100644
--- a/system/doc/getting_started/conc_prog.xml
+++ b/system/doc/getting_started/conc_prog.xml
@@ -95,7 +95,7 @@ goodbye</pre>
the second a "goodbye", the first another "hello" and so forth.
But where did the &lt;0.63.0&gt; come from? The return value of a
function is of course the return value of the last "thing" in
- the function. The last thing in the function <c>start</c> is</p>
+ the function. The last thing in the function <c>start</c> is:</p>
<code type="none">
spawn(tut14, say_something, [goodbye, 3]).</code>
<p><c>spawn</c> returns a <em>process identifier</em>, or
@@ -166,7 +166,7 @@ Pong_PID = spawn(tut15, pong, [])</code>
<c>start</c> now creates another process "ping".</p>
<code type="none">
spawn(tut15, ping, [3, Pong_PID]),</code>
- <p>this process executes</p>
+ <p>This process executes:</p>
<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>