diff options
author | Alvaro Videla <[email protected]> | 2009-12-21 22:42:16 +0800 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-02-14 12:15:09 +0100 |
commit | 2356f4e8c89b61b71d1afd88161b8418a47dde0b (patch) | |
tree | cf9bab99bd5ccaa17751d9cb40532bcb9c950dfc | |
parent | 9a8bcc769b6e2bda63b8337e631d2d2f408f0dd8 (diff) | |
download | otp-2356f4e8c89b61b71d1afd88161b8418a47dde0b.tar.gz otp-2356f4e8c89b61b71d1afd88161b8418a47dde0b.tar.bz2 otp-2356f4e8c89b61b71d1afd88161b8418a47dde0b.zip |
Fix minor typo in read_report/1
-rw-r--r-- | lib/sasl/src/rb.erl | 2 |
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 |