summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2015-10-17 20:50:40 -0700
committerDavid Tolnay <dtolnay@gmail.com>2015-10-17 20:50:40 -0700
commitc8dc164566bde82282b3192b677ca25997bafa0c (patch)
tree50e2aee9bfc43f5d6dea9d82f2274a5a69a11f0c /docs
parent32e5e6af4ba5c8017865fadd6be1b4eee92756fb (diff)
Support lowercase name in from_entries (fix #990)
Diffstat (limited to 'docs')
-rw-r--r--docs/content/3.manual/manual.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml
index 39abfd0e..d9dd3b18 100644
--- a/docs/content/3.manual/manual.yml
+++ b/docs/content/3.manual/manual.yml
@@ -824,7 +824,7 @@ sections:
`with_entries(foo)` is a shorthand for `to_entries |
map(foo) | from_entries`, useful for doing some operation to
all keys and values of an object. `from_entries` accepts key, Key,
- Name, value and Value as keys.
+ name, Name, value and Value as keys.
examples:
- program: 'to_entries'