diff options
author | Andrew Dryga <[email protected]> | 2017-02-12 19:55:11 +0200 |
---|---|---|
committer | Andrew Dryga <[email protected]> | 2017-02-14 11:32:55 +0200 |
commit | 6065cc251a4c15bff782bd09ec413c4d65e166fb (patch) | |
tree | 7badb57d371c088a4c3a15502b78e2545dbcb719 /lib/wx/api_gen | |
parent | a3291799c29e82bb2725a589ef0f804dfbd9eac7 (diff) | |
download | otp-6065cc251a4c15bff782bd09ec413c4d65e166fb.tar.gz otp-6065cc251a4c15bff782bd09ec413c4d65e166fb.tar.bz2 otp-6065cc251a4c15bff782bd09ec413c4d65e166fb.zip |
Fixed typos in lib/wx
Diffstat (limited to 'lib/wx/api_gen')
-rw-r--r-- | lib/wx/api_gen/gen_util.erl | 2 | ||||
-rw-r--r-- | lib/wx/api_gen/wx_gen_cpp.erl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/wx/api_gen/gen_util.erl b/lib/wx/api_gen/gen_util.erl index cd42ad2d96..49a3cb521e 100644 --- a/lib/wx/api_gen/gen_util.erl +++ b/lib/wx/api_gen/gen_util.erl @@ -203,7 +203,7 @@ replace_and_remove([$; | R], Acc) -> replace_and_remove([$@ | R], Acc) -> replace_and_remove(R, [directive|Acc]); -replace_and_remove([_E|R], Acc) -> %% Ignore everthing else +replace_and_remove([_E|R], Acc) -> %% Ignore everything else replace_and_remove(R, Acc); replace_and_remove([], Acc) -> Acc. diff --git a/lib/wx/api_gen/wx_gen_cpp.erl b/lib/wx/api_gen/wx_gen_cpp.erl index d4b6db8153..4b208001a0 100644 --- a/lib/wx/api_gen/wx_gen_cpp.erl +++ b/lib/wx/api_gen/wx_gen_cpp.erl @@ -627,7 +627,7 @@ decode_arg(N,#type{name="wxArrayString"},Place,A0) -> w(" int * ~sLen = (int *) bp; bp += 4;~n", [N]), case Place of arg -> w(" wxArrayString ~s;~n", [N]); - opt -> ignore %% Allready declared + opt -> ignore %% Already declared end, w(" int ~sASz = 0, * ~sTemp;~n", [N,N]), w(" for(int i=0; i < *~sLen; i++) {~n", [N]), |