aboutsummaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2009-08-17 17:16:43 +0000
committerBadlop <badlop@process-one.net>2009-08-17 17:16:43 +0000
commit45b12ec8864d7f2332f791b3f3700a01c4b36aa7 (patch)
tree7a26fad890a94f58a107ea1fd948763dc44a2704 /src/web
parentUpdate German translation (thanks to Nikolaus Polak) (diff)
Fix EDoc errors.
SVN Revision: 2494
Diffstat (limited to 'src/web')
-rw-r--r--src/web/mod_http_fileserver.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/web/mod_http_fileserver.erl b/src/web/mod_http_fileserver.erl
index 21dd6fddf..36679bc2e 100644
--- a/src/web/mod_http_fileserver.erl
+++ b/src/web/mod_http_fileserver.erl
@@ -173,7 +173,8 @@ initialize(Host, Opts) ->
%% @spec (AdminCTs::[CT], Default::[CT]) -> [CT]
%% where CT = {Extension::string(), Value}
%% Value = string() | undefined
-%% Returns a unified list without duplicates where elements of AdminCTs have more priority.
+%% @doc Return a unified list without duplicates.
+%% Elements of AdminCTs have more priority.
%% If a CT is declared as 'undefined', then it is not included in the result.
build_list_content_types(AdminCTsUnsorted, DefaultCTsUnsorted) ->
AdminCTs = lists:ukeysort(1, AdminCTsUnsorted),