diff options
author | Joseph Wayne Norton <[email protected]> | 2012-09-23 21:52:53 +0900 |
---|---|---|
committer | Joseph Wayne Norton <[email protected]> | 2012-09-23 22:11:42 +0900 |
commit | 589e047e5558d965ca48f96eda3cd452b0627df2 (patch) | |
tree | c681c1106651fe5cfb2dd7521e9361a07e3f502b /lib/stdlib | |
parent | 7571553c9679cbc6a8066ddb54556a4794e9754a (diff) | |
download | otp-589e047e5558d965ca48f96eda3cd452b0627df2.tar.gz otp-589e047e5558d965ca48f96eda3cd452b0627df2.tar.bz2 otp-589e047e5558d965ca48f96eda3cd452b0627df2.zip |
Export ets:match_pattern/0 type
Similar to match specification, some of the ets functions uses a match
pattern. Export the match pattern type to allow for inclusion in the
types and function specifications of other modules.
Diffstat (limited to 'lib/stdlib')
-rw-r--r-- | lib/stdlib/src/ets.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/ets.erl b/lib/stdlib/src/ets.erl index 817b397cc4..7485debfe3 100644 --- a/lib/stdlib/src/ets.erl +++ b/lib/stdlib/src/ets.erl @@ -42,7 +42,7 @@ -export([i/0, i/1, i/2, i/3]). --export_type([tab/0, tid/0, match_spec/0]). +-export_type([tab/0, tid/0, match_pattern/0, match_spec/0]). %%----------------------------------------------------------------------------- |