aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib
diff options
context:
space:
mode:
authorBruce Yinhe <[email protected]>2014-07-11 16:58:20 +0200
committerBruce Yinhe <[email protected]>2014-07-11 16:58:20 +0200
commit9b40085e02d90c46f7a6ef644fba66432bd8190a (patch)
tree2266d957a1d4c58a74352d25cfe20f1cc2dbcd7b /lib/stdlib
parent5f7d8b95a75d465b27219e6920fb017c9816084f (diff)
parent0e1fc856dec43f9fe825678c0547182d599046c7 (diff)
downloadotp-9b40085e02d90c46f7a6ef644fba66432bd8190a.tar.gz
otp-9b40085e02d90c46f7a6ef644fba66432bd8190a.tar.bz2
otp-9b40085e02d90c46f7a6ef644fba66432bd8190a.zip
Merge branch 'maint'
Diffstat (limited to 'lib/stdlib')
-rw-r--r--lib/stdlib/src/maps.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/stdlib/src/maps.erl b/lib/stdlib/src/maps.erl
index 4ef1638e6d..3f019aa35a 100644
--- a/lib/stdlib/src/maps.erl
+++ b/lib/stdlib/src/maps.erl
@@ -133,10 +133,10 @@ to_list(_) -> erlang:nif_error(undef).
update(_,_,_) -> erlang:nif_error(undef).
--spec values(Map) -> Keys when
+-spec values(Map) -> Values when
Map :: map(),
- Keys :: [Key],
- Key :: term().
+ Values :: [Value],
+ Value :: term().
values(_) -> erlang:nif_error(undef).