diff options
| author | Kiko Fernandez-Reyes <kiko@erlang.org> | 2022-12-15 08:51:25 +0100 |
|---|---|---|
| committer | Kiko Fernandez-Reyes <kiko@erlang.org> | 2022-12-15 09:02:47 +0100 |
| commit | dda4d7b0736231381faa27fedefdd033f9d15cde (patch) | |
| tree | fd80ba445c3ebc9b2df727dc9d0061670ab8d08b /lib/inets/src/http_server | |
| parent | d6eb1c53d688a242bfb5e3b4febcea66c49c0fe7 (diff) | |
| download | erlang-dda4d7b0736231381faa27fedefdd033f9d15cde.tar.gz | |
inets: adds missing type to httpd:info/2
Diffstat (limited to 'lib/inets/src/http_server')
| -rw-r--r-- | lib/inets/src/http_server/httpd.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/src/http_server/httpd.erl b/lib/inets/src/http_server/httpd.erl index b43d95b581..54d699f500 100644 --- a/lib/inets/src/http_server/httpd.erl +++ b/lib/inets/src/http_server/httpd.erl @@ -115,9 +115,9 @@ reload_config(ConfigFile, Mode) -> info(Pid) when is_pid(Pid) -> info(Pid, []). --spec info(Pid, HttpInformation) -> HttpInformation when +-spec info(Pid, Properties) -> HttpInformation when Pid :: pid(), - Path :: file:name_all(), + Properties :: [atom()], HttpInformation :: [CommonOption] | [CommunicationOption] | [ModOption] |
