diff options
Diffstat (limited to 'src/mod_http_fileserver.erl')
-rw-r--r-- | src/mod_http_fileserver.erl | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mod_http_fileserver.erl b/src/mod_http_fileserver.erl index 287fce624..f1639569c 100644 --- a/src/mod_http_fileserver.erl +++ b/src/mod_http_fileserver.erl @@ -522,12 +522,11 @@ mod_doc() -> ?T("Specify mappings of extension to content type. " "There are several content types already defined. " "With this option you can add new definitions " - "or modify existing ones."), + "or modify existing ones. The default values are:"), example => - [{?T("The default value is shown in the example below:"), - ["content_types:"| + ["content_types:"| [" " ++ binary_to_list(E) ++ ": " ++ binary_to_list(T) - || {E, T} <- ?DEFAULT_CONTENT_TYPES]]}]}}, + || {E, T} <- ?DEFAULT_CONTENT_TYPES]]}}, {default_content_type, #{value => ?T("Type"), desc => |