aboutsummaryrefslogtreecommitdiffstats
path: root/system/doc/getting_started
diff options
context:
space:
mode:
authorTom Benner <[email protected]>2014-12-27 14:57:51 -0500
committerTom Benner <[email protected]>2014-12-28 14:39:38 -0500
commitd57384d0ac779b5a5ab8b5981e86be43b69fd969 (patch)
treef6d4bbbd5b5b1e5b333c06b341cbb1e38d9f3b0a /system/doc/getting_started
parenta0899e09dc5aede325663a3673163c9ce376bf6f (diff)
downloadotp-d57384d0ac779b5a5ab8b5981e86be43b69fd969.tar.gz
otp-d57384d0ac779b5a5ab8b5981e86be43b69fd969.tar.bz2
otp-d57384d0ac779b5a5ab8b5981e86be43b69fd969.zip
Fix typo ("to use to use")
Diffstat (limited to 'system/doc/getting_started')
-rw-r--r--system/doc/getting_started/seq_prog.xml7
1 files changed, 3 insertions, 4 deletions
diff --git a/system/doc/getting_started/seq_prog.xml b/system/doc/getting_started/seq_prog.xml
index 0bd9f83c73..3636b23797 100644
--- a/system/doc/getting_started/seq_prog.xml
+++ b/system/doc/getting_started/seq_prog.xml
@@ -573,10 +573,9 @@ http://www.erlang.org/doc/r9b/doc/index.html</code>
<section>
<title>Writing Output to a Terminal</title>
<p>It's nice to be able to do formatted output in these example, so
- the next example shows a simple way to use to use
- the <c>io:format</c> function. Of course, just like all other
- exported functions, you can test the <c>io:format</c> function in
- the shell:</p>
+ the next example shows a simple way to use the <c>io:format</c>
+ function. Of course, just like all other exported functions, you
+ can test the <c>io:format</c> function in the shell:</p>
<pre>
31> <input>io:format("hello world~n", []).</input>
hello world