aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sasl
diff options
context:
space:
mode:
authorAlvaro Videla <[email protected]>2009-12-21 22:42:16 +0800
committerBjörn Gustavsson <[email protected]>2010-02-14 12:15:09 +0100
commit2356f4e8c89b61b71d1afd88161b8418a47dde0b (patch)
treecf9bab99bd5ccaa17751d9cb40532bcb9c950dfc /lib/sasl
parent9a8bcc769b6e2bda63b8337e631d2d2f408f0dd8 (diff)
downloadotp-2356f4e8c89b61b71d1afd88161b8418a47dde0b.tar.gz
otp-2356f4e8c89b61b71d1afd88161b8418a47dde0b.tar.bz2
otp-2356f4e8c89b61b71d1afd88161b8418a47dde0b.zip
Fix minor typo in read_report/1
Diffstat (limited to 'lib/sasl')
-rw-r--r--lib/sasl/src/rb.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sasl/src/rb.erl b/lib/sasl/src/rb.erl
index 00d86285e5..84b98537ae 100644
--- a/lib/sasl/src/rb.erl
+++ b/lib/sasl/src/rb.erl
@@ -415,7 +415,7 @@ read_report(Fd) ->
Ref = make_ref(),
case (catch {Ref,binary_to_term(Bin)}) of
{'EXIT',_} ->
- {error, "Inclomplete erlang term in log"};
+ {error, "Incomplete erlang term in log"};
{Ref,Term} ->
{ok, Term}
end