aboutsummaryrefslogtreecommitdiffstats
path: root/system/doc
diff options
context:
space:
mode:
authorBruce Yinhe <[email protected]>2014-11-04 09:37:56 +0100
committerBruce Yinhe <[email protected]>2014-11-04 09:37:56 +0100
commit0656f42b810771ef319fe4a52745cec9e3aea652 (patch)
tree44a4dcbd51b22912eba81bf37cfc172fbda48fc0 /system/doc
parent490b65a768d79ff1b9abdb23f29401f961d6f126 (diff)
parent487c3858450d27e6838eed19e55c21641d101908 (diff)
downloadotp-0656f42b810771ef319fe4a52745cec9e3aea652.tar.gz
otp-0656f42b810771ef319fe4a52745cec9e3aea652.tar.bz2
otp-0656f42b810771ef319fe4a52745cec9e3aea652.zip
Merge branch 'maint'
Diffstat (limited to 'system/doc')
-rw-r--r--system/doc/efficiency_guide/processes.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/doc/efficiency_guide/processes.xml b/system/doc/efficiency_guide/processes.xml
index 6f85b029eb..86951e2dcc 100644
--- a/system/doc/efficiency_guide/processes.xml
+++ b/system/doc/efficiency_guide/processes.xml
@@ -186,7 +186,7 @@ kilo_byte(0, Acc) ->
kilo_byte(N, Acc) ->
kilo_byte(N-1, [Acc|Acc]).</code>
- <p><c>kilo_byte/1</c> creates a deep list. If we call
+ <p><c>kilo_byte/0</c> creates a deep list. If we call
<c>list_to_binary/1</c>, we can convert the deep list to a binary
of 1024 bytes:</p>