aboutsummaryrefslogtreecommitdiffstats
path: root/system/doc/getting_started/seq_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/seq_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/seq_prog.xml')
-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 dede41d3af..6f35c0cccc 100644
--- a/system/doc/getting_started/seq_prog.xml
+++ b/system/doc/getting_started/seq_prog.xml
@@ -309,7 +309,7 @@ convert_length({inch, Y}) ->
<p>We have shown tuples with two parts above, but tuples can have
as many parts as we want and contain any valid Erlang
<em>term</em>. For example, to represent the temperature of
- various cities of the world we could write</p>
+ various cities of the world we could write:</p>
<code type="none">
{moscow, {c, -10}}
{cape_town, {f, 70}}
@@ -1187,11 +1187,11 @@ trunc(5.0) = 5
<pre>
74> <input>2004 rem 400.</input>
4</pre>
- <p>so instead of writing</p>
+ <p>so instead of writing:</p>
<code type="none">
trunc(Year / 400) * 400 == Year ->
leap;</code>
- <p>we could write</p>
+ <p>we could write:</p>
<code type="none">
Year rem 400 == 0 ->
leap;</code>