diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2014-06-29 20:15:43 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2014-06-29 21:13:45 +0200 |
commit | 5f995bfdc007c7f8c23d2b933a40627c1f311a04 (patch) | |
tree | 9ede41f6325bfb2020ee72738f6fb2fc36d81c78 /bootstrap | |
parent | 0d1ae7a4683b1e4a305eb848e70ec641984a1067 (diff) |
Fix a few minor formatting inconsistencies
* fix overlong lines
* where appropriate use %% instead of %
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -28,10 +28,11 @@ main(Args) -> %% Extract the system info of the version of OTP we use to compile rebar OtpInfo = string:strip(erlang:system_info(otp_release), both, $\n), - %% Types dict:dict() and digraph:digraph() have been introduced in Erlang 17. - %% At the same time, their counterparts dict() and digraph() are to be deprecated - %% in Erlang 18. namespaced_types option is used to select proper type name - %% depending of the OTP version used. + %% Types dict:dict() and digraph:digraph() have been introduced in + %% Erlang 17. + %% At the same time, their counterparts dict() and digraph() are to be + %% deprecated in Erlang 18. namespaced_types option is used to select + %% proper type name depending of the OTP version used. NamespacedTypes = case is_otp(OtpInfo, "^[0-9]+") of true -> {d, namespaced_types}; false -> undefined |