diff options
author | Rickard Green <[email protected]> | 2017-04-25 14:40:49 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2017-04-25 14:40:49 +0200 |
commit | 27e61fb447ff749c47e72a543a95fde72fa76f3b (patch) | |
tree | e608d5005d8618e6c9512dc0cb9104bfa13799ad | |
parent | 61a20e55ccf6ff89a4863c1ed8754b8909646e88 (diff) | |
download | otp-27e61fb447ff749c47e72a543a95fde72fa76f3b.tar.gz otp-27e61fb447ff749c47e72a543a95fde72fa76f3b.tar.bz2 otp-27e61fb447ff749c47e72a543a95fde72fa76f3b.zip |
Fix typespec of the opaque type tid() of the ETS module
-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 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(), [_], [_]}]. |