Fix docstring error for Join functions

The docstring for list_join/Fn::Join has a minor mistake, the list
to be joined in a list inside the list containing the delimiter.

Change-Id: I5ae13b4e145a52d41aa2cd69ba53a7d01509a33a
This commit is contained in:
Steven Hardy 2015-06-23 14:38:38 +01:00
parent 0d99ede046
commit 90d74a1e55
2 changed files with 2 additions and 2 deletions

View File

@ -286,7 +286,7 @@ class Join(function.Function):
Takes the form::
{ "Fn::Join" : [ "<delim>", [ "<string_1>", "<string_2>", ... ] }
{ "Fn::Join" : [ "<delim>", [ "<string_1>", "<string_2>", ... ] ] }
And resolves to::

View File

@ -231,7 +231,7 @@ class Join(cfn_funcs.Join):
Takes the form::
{ "list_join" : [ "<delim>", [ "<string_1>", "<string_2>", ... ] }
{ "list_join" : [ "<delim>", [ "<string_1>", "<string_2>", ... ] ] }
And resolves to::