aboutsummaryrefslogtreecommitdiffstats
path: root/lib/wx
diff options
context:
space:
mode:
authorTuncer Ayaz <[email protected]>2011-08-31 15:04:36 +0200
committerTuncer Ayaz <[email protected]>2011-09-15 00:12:09 +0200
commit90f703bafc69bf2446db718fd681c26c2bef7f10 (patch)
tree49ccb238b43a7608414de4c6b65e164dcc687955 /lib/wx
parente17a38aa65a865e36accf1ab68ca369275d9f71c (diff)
downloadotp-90f703bafc69bf2446db718fd681c26c2bef7f10.tar.gz
otp-90f703bafc69bf2446db718fd681c26c2bef7f10.tar.bz2
otp-90f703bafc69bf2446db718fd681c26c2bef7f10.zip
Fix misspelling of successful
Diffstat (limited to 'lib/wx')
-rw-r--r--lib/wx/api_gen/gl_gen.erl2
-rw-r--r--lib/wx/api_gen/wx_gen.erl2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/wx/api_gen/gl_gen.erl b/lib/wx/api_gen/gl_gen.erl
index 374e0bd12b..b665d949b3 100644
--- a/lib/wx/api_gen/gl_gen.erl
+++ b/lib/wx/api_gen/gl_gen.erl
@@ -44,7 +44,7 @@ devcode() -> spawn(fun() -> safe(fun gen_code/0,false) end).
safe(What, QuitOnErr) ->
try
What(),
- io:format("Completed succesfully~n~n", []),
+ io:format("Completed successfully~n~n", []),
QuitOnErr andalso gen_util:halt(0)
catch Err:Reason ->
io:format("Error ~p: ~p:~p~n ~p~n",
diff --git a/lib/wx/api_gen/wx_gen.erl b/lib/wx/api_gen/wx_gen.erl
index 2f20c42a5d..b36653c570 100644
--- a/lib/wx/api_gen/wx_gen.erl
+++ b/lib/wx/api_gen/wx_gen.erl
@@ -38,7 +38,7 @@ devcode() -> erase(),safe(fun gen_code/0,false).
safe(What, QuitOnErr) ->
try
What(),
- io:format("Completed succesfully~n~n", []),
+ io:format("Completed successfully~n~n", []),
QuitOnErr andalso gen_util:halt(0)
catch Err:Reason ->
io:format("Error in ~p ~p~n", [get(current_class),get(current_func)]),