Skip to content
This repository has been archived by the owner on May 10, 2023. It is now read-only.

Fix: Readme example of AplDocument constructor #3

Merged
merged 1 commit into from Jul 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -76,9 +76,9 @@ class LaunchIntentHandler {
const responseBuilder = handlerInput.responseBuilder;
return responseBuilder
.addDirective(
new AplDocument({
(<LaunchAplDocument />).getDirective();
}))
new AplDocument(
<LaunchAplDocument />
).getDirective())
.speak("Welcome to my first JSX for APL skill")
.getResponse();
}
Expand Down