aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src/ets.erl
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2017-04-25 14:40:49 +0200
committerRickard Green <[email protected]>2017-04-25 14:40:49 +0200
commit27e61fb447ff749c47e72a543a95fde72fa76f3b (patch)
treee608d5005d8618e6c9512dc0cb9104bfa13799ad /lib/stdlib/src/ets.erl
parent61a20e55ccf6ff89a4863c1ed8754b8909646e88 (diff)
downloadotp-27e61fb447ff749c47e72a543a95fde72fa76f3b.tar.gz
otp-27e61fb447ff749c47e72a543a95fde72fa76f3b.tar.bz2
otp-27e61fb447ff749c47e72a543a95fde72fa76f3b.zip
Fix typespec of the opaque type tid() of the ETS module
Diffstat (limited to 'lib/stdlib/src/ets.erl')
-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 195a407570..894c15b0cf 100644
--- a/lib/stdlib/src/ets.erl
+++ b/lib/stdlib/src/ets.erl
@@ -54,7 +54,7 @@
| {tab(),integer(),integer(),comp_match_spec(),list(),integer()}
| {tab(),_,_,integer(),comp_match_spec(),list(),integer(),integer()}.
--opaque tid() :: integer().
+-opaque tid() :: reference().
-type match_pattern() :: atom() | tuple().
-type match_spec() :: [{match_pattern(), [_], [_]}].