diff options
author | Fredrik Gustafsson <[email protected]> | 2013-01-28 17:32:14 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-01-28 17:32:14 +0100 |
commit | 2d869f65cc888976d797a1900dfebef437514121 (patch) | |
tree | 47bd4958767fda03c6728de07b9278f7b5f61a3f | |
parent | cca41a526d93978ced96b4e2719b3c1b9937b5c8 (diff) | |
parent | de4fd96e98b06c3c28bd0ea1abb067a392e39788 (diff) | |
download | otp-2d869f65cc888976d797a1900dfebef437514121.tar.gz otp-2d869f65cc888976d797a1900dfebef437514121.tar.bz2 otp-2d869f65cc888976d797a1900dfebef437514121.zip |
Merge branch 'sa/dialyzer-minor-fixes/R16A'
* sa/dialyzer-minor-fixes/R16A:
Fix wording of error message
Fix reference results of a Dialyzer test
-rw-r--r-- | lib/hipe/cerl/erl_types.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hipe/cerl/erl_types.erl b/lib/hipe/cerl/erl_types.erl index 0f88b32db1..532b2e43cd 100644 --- a/lib/hipe/cerl/erl_types.erl +++ b/lib/hipe/cerl/erl_types.erl @@ -3898,7 +3898,7 @@ t_form_to_string({type, _L, range, [From, To]} = Type) -> case {erl_eval:partial_eval(From), erl_eval:partial_eval(To)} of {{integer, _, FromVal}, {integer, _, ToVal}} -> io_lib:format("~w..~w", [FromVal, ToVal]); - _ -> io_lib:format("Bad formed type ~w",[Type]) + _ -> io_lib:format("Badly formed type ~w",[Type]) end; t_form_to_string({type, _L, record, [{atom, _, Name}]}) -> io_lib:format("#~w{}", [Name]); |