From 705ff39a8052b433c2f2dede775cb068aca620d6 Mon Sep 17 00:00:00 2001 From: Hans Bolinder Date: Fri, 8 Jun 2018 17:04:39 +0200 Subject: edoc, erl_docgen: Fix pretty-printing of type map() Complex types including map() are now pretty-printed. --- lib/erl_docgen/src/docgen_otp_specs.erl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/erl_docgen/src/docgen_otp_specs.erl') diff --git a/lib/erl_docgen/src/docgen_otp_specs.erl b/lib/erl_docgen/src/docgen_otp_specs.erl index 9f2b401f93..311ec1471a 100644 --- a/lib/erl_docgen/src/docgen_otp_specs.erl +++ b/lib/erl_docgen/src/docgen_otp_specs.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1996-2017. All Rights Reserved. +%% Copyright Ericsson AB 1996-2018. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -658,6 +658,8 @@ ot_name(Es, T) -> {atom,0,list_to_atom(Atom)},T]}; "tuple" when T =:= [] -> {type,0,tuple,any}; + "map" when T =:= [] -> + {type,0,map,any}; Atom -> {type,0,list_to_atom(Atom),T} end. -- cgit v1.2.3