diff options
author | Hans Bolinder <[email protected]> | 2014-03-11 15:16:19 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2014-03-24 09:13:02 +0100 |
commit | 0cd4d6babd9b5480ed3694ba8a3538447dc63a35 (patch) | |
tree | 6b7aafaa031ada7529c9135d73a12b36f186a452 /lib/stdlib/src/sets.erl | |
parent | c2b4eab25c907f453a394d382c04cd04e6c06b49 (diff) | |
download | otp-0cd4d6babd9b5480ed3694ba8a3538447dc63a35.tar.gz otp-0cd4d6babd9b5480ed3694ba8a3538447dc63a35.tar.bz2 otp-0cd4d6babd9b5480ed3694ba8a3538447dc63a35.zip |
stdlib: Add more types to epp and erl_lint
Diffstat (limited to 'lib/stdlib/src/sets.erl')
-rw-r--r-- | lib/stdlib/src/sets.erl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/stdlib/src/sets.erl b/lib/stdlib/src/sets.erl index be4b600f25..167a676281 100644 --- a/lib/stdlib/src/sets.erl +++ b/lib/stdlib/src/sets.erl @@ -55,9 +55,8 @@ %%------------------------------------------------------------------------------ --type seg() :: tuple(). --type segs(E) :: tuple() - | E. % dummy +-type seg() :: tuple(). +-type segs(_Element) :: tuple(). %% Define a hash set. The default values are the standard ones. -record(set, |