From b397ab65ea094859cab2d31d6444101bc7238b9a Mon Sep 17 00:00:00 2001 From: Tom Benner Date: Sat, 27 Dec 2014 14:54:27 -0500 Subject: Use colons before when appropriate --- system/doc/getting_started/seq_prog.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'system/doc/getting_started/seq_prog.xml') 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}) ->

We have shown tuples with two parts above, but tuples can have as many parts as we want and contain any valid Erlang term. For example, to represent the temperature of - various cities of the world we could write

+ various cities of the world we could write:

{moscow, {c, -10}} {cape_town, {f, 70}} @@ -1187,11 +1187,11 @@ trunc(5.0) = 5
 74> 2004 rem 400.
 4
-

so instead of writing

+

so instead of writing:

trunc(Year / 400) * 400 == Year -> leap; -

we could write

+

we could write:

Year rem 400 == 0 -> leap; -- cgit v1.2.3