Skip to content

Commit

Permalink
doc: fix missing quote
Browse files Browse the repository at this point in the history
  • Loading branch information
WinterYukky committed Jan 16, 2025
1 parent 17f4a4f commit 09ecab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-stepfunctions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ const getIssue = tasks.HttpInvoke.jsonata(this, 'Get Issue', {
method: sfn.TaskInput.fromText('GET'),
// Parse the API call result to object and set to the variables
assign: {
hostname: $states.input.hostname,
hostname: '{% $states.input.hostname %}',
issue: '{% $parse($states.result.ResponseBody) %}',
},
});
Expand Down

0 comments on commit 09ecab7

Please sign in to comment.