diff options
author | Sverker Eriksson <[email protected]> | 2018-01-29 16:03:37 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2018-01-29 16:03:37 +0100 |
commit | b73e87f5de895860337c0d30473edd1e59667baa (patch) | |
tree | 3a59ef3292e21dbf5bbb4b14b049bcbd305c8f69 /lib/stdlib/src | |
parent | e584c594c167020b5db2b6c9813a6bd2a14d3589 (diff) | |
parent | 184db040e4fca5eacd7150098d77c4d5829d6c52 (diff) | |
download | otp-b73e87f5de895860337c0d30473edd1e59667baa.tar.gz otp-b73e87f5de895860337c0d30473edd1e59667baa.tar.bz2 otp-b73e87f5de895860337c0d30473edd1e59667baa.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r-- | lib/stdlib/src/ets.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/src/ets.erl b/lib/stdlib/src/ets.erl index b6548626f3..adef1640be 100644 --- a/lib/stdlib/src/ets.erl +++ b/lib/stdlib/src/ets.erl @@ -277,7 +277,7 @@ match_spec_compile(_) -> erlang:nif_error(undef). -spec match_spec_run_r(List, CompiledMatchSpec, list()) -> list() when - List :: [tuple()], + List :: [term()], CompiledMatchSpec :: comp_match_spec(). match_spec_run_r(_, _, _) -> @@ -517,7 +517,7 @@ update_element(_, _, _) -> -opaque comp_match_spec() :: reference(). -spec match_spec_run(List, CompiledMatchSpec) -> list() when - List :: [tuple()], + List :: [term()], CompiledMatchSpec :: comp_match_spec(). match_spec_run(List, CompiledMS) -> |