From 7938eaf76f60c49fe68e9224cc950ed1e655a44f Mon Sep 17 00:00:00 2001 From: alex goretoy Date: Wed, 17 Aug 2016 14:07:52 -0700 Subject: [PATCH] Fix typo on interpolation.html.md (#8274) --- website/source/docs/configuration/interpolation.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/configuration/interpolation.html.md b/website/source/docs/configuration/interpolation.html.md index 18374f5ccb..936c1b361d 100644 --- a/website/source/docs/configuration/interpolation.html.md +++ b/website/source/docs/configuration/interpolation.html.md @@ -192,7 +192,7 @@ The supported built-in functions are: * `map("us-east", list("a", "b", "c"), "us-west", list("b", "c", "d"))` * `merge(map1, map2, ...)` - Returns the union of 2 or more maps. The maps - are consumed in the order provided, and duplciate keys overwrite previous + are consumed in the order provided, and duplicate keys overwrite previous entries. * `${merge(map("a", "b"), map("c", "d"))}` returns `{"a": "b", "c": "d"}`