diff options
author | Hans Bolinder <[email protected]> | 2016-03-15 08:37:02 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2016-06-09 11:28:01 +0200 |
commit | e054777773718c2252db65e89a587d3f22211720 (patch) | |
tree | 28f4a70e4f96f6359862d767de43fe95663fa14c /lib/stdlib/src/proplists.erl | |
parent | d22b933fc64ab9e03633f87eebdc981acfd3538a (diff) | |
download | otp-e054777773718c2252db65e89a587d3f22211720.tar.gz otp-e054777773718c2252db65e89a587d3f22211720.tar.bz2 otp-e054777773718c2252db65e89a587d3f22211720.zip |
stdlib: Correct types and specs
Diffstat (limited to 'lib/stdlib/src/proplists.erl')
-rw-r--r-- | lib/stdlib/src/proplists.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/stdlib/src/proplists.erl b/lib/stdlib/src/proplists.erl index 8e99ec0ed9..5356467b19 100644 --- a/lib/stdlib/src/proplists.erl +++ b/lib/stdlib/src/proplists.erl @@ -438,8 +438,9 @@ substitute_aliases_1([], P) -> %% @see normalize/2 -spec substitute_negations(Negations, ListIn) -> ListOut when - Negations :: [{Key, Key}], - Key :: term(), + Negations :: [{Key1, Key2}], + Key1 :: term(), + Key2 :: term(), ListIn :: [term()], ListOut :: [term()]. |