diff options
author | Sverker Eriksson <[email protected]> | 2018-01-29 16:02:17 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2018-01-29 16:02:17 +0100 |
commit | 184db040e4fca5eacd7150098d77c4d5829d6c52 (patch) | |
tree | 67d1c08f7b54de9eaa8962cd208edb2b73425141 /lib/stdlib/src | |
parent | db9e04d0f4337a2b32376a41275ecedfe0258c1f (diff) | |
parent | b6175a41f90f2a0d2d56ec84fa5b4fcf74366d1c (diff) | |
download | otp-184db040e4fca5eacd7150098d77c4d5829d6c52.tar.gz otp-184db040e4fca5eacd7150098d77c4d5829d6c52.tar.bz2 otp-184db040e4fca5eacd7150098d77c4d5829d6c52.zip |
Merge branch 'sverker/ets-match_spec_run-spec/OTP-14889' into 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 1db004c91e..42fa8ede92 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) -> |