diff options
author | rzezeski <[email protected]> | 2011-05-22 14:25:17 -0400 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-05-24 09:15:43 +0200 |
commit | 7d8a1f8b944d6734d9419f184c441899a48c11a3 (patch) | |
tree | e1245e23bc1ccd1f5214531fff4da2e78d5318c2 /lib/edoc/src | |
parent | 5f7fa62cbfa18b88fc254fe362b11367177d2673 (diff) | |
download | otp-7d8a1f8b944d6734d9419f184c441899a48c11a3.tar.gz otp-7d8a1f8b944d6734d9419f184c441899a48c11a3.tar.bz2 otp-7d8a1f8b944d6734d9419f184c441899a48c11a3.zip |
Add a proplist() type
Recently I was adding specs to an API and found that there is
no canonical proplist() type defined.
Diffstat (limited to 'lib/edoc/src')
-rw-r--r-- | lib/edoc/src/edoc_specs.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/edoc/src/edoc_specs.erl b/lib/edoc/src/edoc_specs.erl index 519ade726f..b3d2da5a86 100644 --- a/lib/edoc/src/edoc_specs.erl +++ b/lib/edoc/src/edoc_specs.erl @@ -27,7 +27,6 @@ -include("edoc.hrl"). -include("edoc_types.hrl"). --type proplist() :: [proplists:property()]. -type syntaxTree() :: erl_syntax:syntaxTree(). -define(TOP_TYPE, term). @@ -98,7 +97,7 @@ docs(Forms, CommentFun) -> -type entry() :: #entry{}. -type module_info() :: #module{}. -type entries() :: [entry()]. --spec add_data(Entries::entries(), Options::proplist(), +-spec add_data(Entries::entries(), Options::proplists:proplist(), File::file:filename(), Module::module_info()) -> entries(). %% @doc Create tags a la EDoc for Erlang specifications and types. |