From 42ee645e550894bd47d16d1fe9a9d3b49b83e83a Mon Sep 17 00:00:00 2001 From: Richard Fox Date: Mon, 26 Feb 2018 18:43:13 +0100 Subject: [PATCH] chore(examples): fixes #93 --- examples/basic.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/basic.ts b/examples/basic.ts index dfc5402..be3796c 100644 --- a/examples/basic.ts +++ b/examples/basic.ts @@ -34,7 +34,7 @@ client.open({ versionId: parseInt(process.argv[3], 10), }).then(() => { // Now we can create the controls, We need to add them to a scene though. - // Every Interactive Experience has a "default" scene so we'll add them there there. + // Every Interactive Experience has a "default" scene so we'll add them there. return client.createControls({ sceneID: 'default', controls: makeControls(5, i => `Button ${i}`),