diff options
author | Dave Jeffrey <[email protected]> | 2017-02-08 11:09:08 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2017-02-08 11:09:08 +0000 |
commit | 8fa95e4cc7b127ca2cd7dfeeed7111bc70874ec1 (patch) | |
tree | 83f3a109649d65bc2fa4e85c03797e6791a97fca /lib/observer | |
parent | c41a6e8a377534158b4fcaf07c5b260d80221dbd (diff) | |
download | otp-8fa95e4cc7b127ca2cd7dfeeed7111bc70874ec1.tar.gz otp-8fa95e4cc7b127ca2cd7dfeeed7111bc70874ec1.tar.bz2 otp-8fa95e4cc7b127ca2cd7dfeeed7111bc70874ec1.zip |
Fix observer term conversion error spelling
In the observer UI, when inspecting state, the error given when attempting to convert a bad term contains a spelling mistake.
Diffstat (limited to 'lib/observer')
-rw-r--r-- | lib/observer/src/cdv_bin_cb.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/observer/src/cdv_bin_cb.erl b/lib/observer/src/cdv_bin_cb.erl index 0cea1fdcf0..200c728a62 100644 --- a/lib/observer/src/cdv_bin_cb.erl +++ b/lib/observer/src/cdv_bin_cb.erl @@ -58,7 +58,7 @@ binary_to_term_fun(Bin) -> try binary_to_term(Bin) of Term -> plain_html(io_lib:format("~p",[Term])) catch error:badarg -> - Warning = "This binary can not be coverted to an Erlang term", + Warning = "This binary can not be converted to an Erlang term", observer_html_lib:warning(Warning) end end. |