diff options
author | Dan Gudmundsson <[email protected]> | 2015-06-30 10:32:27 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2015-06-30 10:32:27 +0200 |
commit | 9aa30b9d0f0286cc8f6b7095a11194f89f0d5adb (patch) | |
tree | 9a212a914e8a4c0d0588208e2aa29b0cb60a8483 /lib/wx/api_gen/gen_util.erl | |
parent | 74a95b3d511177a9b35c2b0272b9ca5511b6f750 (diff) | |
download | otp-9aa30b9d0f0286cc8f6b7095a11194f89f0d5adb.tar.gz otp-9aa30b9d0f0286cc8f6b7095a11194f89f0d5adb.tar.bz2 otp-9aa30b9d0f0286cc8f6b7095a11194f89f0d5adb.zip |
wx: Fix code generator
I had changed the (generatade) code without updating the code generator in commit 38cb91a9.
Fixed now, and also fixed a typo in the generated licence code.
Diffstat (limited to 'lib/wx/api_gen/gen_util.erl')
-rw-r--r-- | lib/wx/api_gen/gen_util.erl | 4 |
1 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 6bdbb4ca96..ff245a6359 100644 --- a/lib/wx/api_gen/gen_util.erl +++ b/lib/wx/api_gen/gen_util.erl @@ -230,7 +230,7 @@ erl_copyright() -> w("%% Copyright Ericsson AB ~p-~p. All Rights Reserved.~n", [StartYear, CurrentYear]), w("%%~n",[]), - w("%% Licensed under the Apache License, Version 2.0 (the \"License\");,~n",[]), + w("%% Licensed under the Apache License, Version 2.0 (the \"License\");~n",[]), w("%% you may not use this file except in compliance with the License.~n",[]), w("%% You may obtain a copy of the License at~n",[]), w("%%~n",[]), @@ -251,7 +251,7 @@ c_copyright() -> w(" *~n",[]), w(" * Copyright Ericsson AB 2008-~p. All Rights Reserved.~n",[CurrentYear]), w(" *~n",[]), - w(" * Licensed under the Apache License, Version 2.0 (the \"License\");,~n",[]), + w(" * Licensed under the Apache License, Version 2.0 (the \"License\");~n",[]), w(" * you may not use this file except in compliance with the License.~n",[]), w(" * You may obtain a copy of the License at~n",[]), w(" *~n",[]), |