aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Yinhe <[email protected]>2014-11-06 10:19:48 +0100
committerBruce Yinhe <[email protected]>2014-11-06 10:19:48 +0100
commitab85b24eb23a9940eb9e0b8b865a8b34c61d7bf2 (patch)
treef87ddb663ae39ddff9e78935acf14056e6fe66fc
parent682a6082159568f40615f03d12d44ee70edd14c6 (diff)
parentd94783860fd4e41373746de059b78403c8bd1a59 (diff)
downloadotp-ab85b24eb23a9940eb9e0b8b865a8b34c61d7bf2.tar.gz
otp-ab85b24eb23a9940eb9e0b8b865a8b34c61d7bf2.tar.bz2
otp-ab85b24eb23a9940eb9e0b8b865a8b34c61d7bf2.zip
Merge branch 'dcy/maint' into maint
* dcy/maint: fix doc for maps:with/2
-rw-r--r--lib/stdlib/doc/src/maps.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/doc/src/maps.xml b/lib/stdlib/doc/src/maps.xml
index 64229fa8d3..f766c843be 100644
--- a/lib/stdlib/doc/src/maps.xml
+++ b/lib/stdlib/doc/src/maps.xml
@@ -330,7 +330,7 @@ false</code>
<code type="none">
> Map = #{42 => value_three,1337 => "value two","a" => 1},
Ks = ["a",42,"other key"],
- maps:without(Ks,Map).
+ maps:with(Ks,Map).
#{42 => value_three,"a" => 1}</code>
</desc>
</func>