aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src
diff options
context:
space:
mode:
authorJoseph Wayne Norton <[email protected]>2012-09-23 21:52:53 +0900
committerJoseph Wayne Norton <[email protected]>2012-09-23 22:11:42 +0900
commit589e047e5558d965ca48f96eda3cd452b0627df2 (patch)
treec681c1106651fe5cfb2dd7521e9361a07e3f502b /lib/stdlib/src
parent7571553c9679cbc6a8066ddb54556a4794e9754a (diff)
downloadotp-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/src')
-rw-r--r--lib/stdlib/src/ets.erl2
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]).
%%-----------------------------------------------------------------------------