diff options
author | Björn Gustavsson <[email protected]> | 2010-05-24 13:32:45 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-06-03 14:34:27 +0200 |
commit | c9eae64797d20787d0410c0c0fc65ecd82f3dc73 (patch) | |
tree | fa5f05f2d741849c16a3bcc3ebb200c7e8bc2aa3 /lib/stdlib/src/proplists.erl | |
parent | f0624637d86deadc998f7885fa097c2f1c9e9173 (diff) | |
download | otp-c9eae64797d20787d0410c0c0fc65ecd82f3dc73.tar.gz otp-c9eae64797d20787d0410c0c0fc65ecd82f3dc73.tar.bz2 otp-c9eae64797d20787d0410c0c0fc65ecd82f3dc73.zip |
proplists: Export the type property()
Diffstat (limited to 'lib/stdlib/src/proplists.erl')
-rw-r--r-- | lib/stdlib/src/proplists.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/stdlib/src/proplists.erl b/lib/stdlib/src/proplists.erl index 35d14891f1..aab8f39b6f 100644 --- a/lib/stdlib/src/proplists.erl +++ b/lib/stdlib/src/proplists.erl @@ -49,6 +49,8 @@ %% --------------------------------------------------------------------- +-export_type([property/0]). + -type property() :: atom() | tuple(). -type aliases() :: [{any(), any()}]. |