diff options
author | Henrik Nord <[email protected]> | 2011-08-29 17:15:23 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-08-29 17:21:47 +0200 |
commit | 7f5f7b08a8f0ed55126192beaed9d748f14c8f0a (patch) | |
tree | a35f7ab30a0e1a18664c1fd0e3adea281d152396 /lib/stdlib/src | |
parent | f94beb7788106a85a02bebcd6362a170248fa659 (diff) | |
parent | 7d8a1f8b944d6734d9419f184c441899a48c11a3 (diff) | |
download | otp-7f5f7b08a8f0ed55126192beaed9d748f14c8f0a.tar.gz otp-7f5f7b08a8f0ed55126192beaed9d748f14c8f0a.tar.bz2 otp-7f5f7b08a8f0ed55126192beaed9d748f14c8f0a.zip |
Merge branch 'rz/add_proplist_type' into dev
* rz/add_proplist_type:
Add a proplist() type
OTP-9499
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r-- | lib/stdlib/src/proplists.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/stdlib/src/proplists.erl b/lib/stdlib/src/proplists.erl index 68697d0da2..e3eda5d932 100644 --- a/lib/stdlib/src/proplists.erl +++ b/lib/stdlib/src/proplists.erl @@ -49,9 +49,10 @@ %% --------------------------------------------------------------------- --export_type([property/0]). +-export_type([property/0, proplist/0]). -type property() :: atom() | tuple(). +-type proplist() :: [property()]. %% --------------------------------------------------------------------- |