diff options
author | Richard Carlsson <[email protected]> | 2018-04-17 09:29:42 +0200 |
---|---|---|
committer | Richard Carlsson <[email protected]> | 2018-04-17 09:29:42 +0200 |
commit | d97cba952c51dbb830e89c373aa0f65e3a1e5415 (patch) | |
tree | 907f8b83ae8a186166b10194251c6f216ca20dab /lib/edoc | |
parent | 40dc6b9fed7d51a204e0d69b7bba7e8cb6496ae5 (diff) | |
download | otp-d97cba952c51dbb830e89c373aa0f65e3a1e5415.tar.gz otp-d97cba952c51dbb830e89c373aa0f65e3a1e5415.tar.bz2 otp-d97cba952c51dbb830e89c373aa0f65e3a1e5415.zip |
Do not use lists:concat where lists:append is intended
Diffstat (limited to 'lib/edoc')
-rw-r--r-- | lib/edoc/src/edoc_doclet.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/edoc/src/edoc_doclet.erl b/lib/edoc/src/edoc_doclet.erl index 0e084e619e..f55cffe158 100644 --- a/lib/edoc/src/edoc_doclet.erl +++ b/lib/edoc/src/edoc_doclet.erl @@ -255,7 +255,7 @@ modules_frame(Dir, Ms, Title, CSS) -> ?NL, {table, [{width, "100%"}, {border, 0}, {summary, "list of modules"}], - lists:concat( + lists:append( [[?NL, {tr, [{td, [], [{a, [{href, module_ref(M)}, @@ -448,7 +448,7 @@ application_frame(Dir, Apps, Title, CSS) -> {h2, ["Applications"]}, ?NL, {table, [{width, "100%"}, {border, 0}], - lists:concat( + lists:append( [[{tr, [{td, [], [{a, [{href,app_ref(Path,App)}, {target,"_top"}], [App]}]}]}] |