From 2b8ea383842e11f0c55f00900354e715ee5e95a3 Mon Sep 17 00:00:00 2001 From: Jordan Ranz Date: Thu, 20 Sep 2018 22:53:02 -0700 Subject: [PATCH] Fix sumerian name mispelling --- js/xr.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/xr.md b/js/xr.md index 5744c257b7c..a23f9741c53 100644 --- a/js/xr.md +++ b/js/xr.md @@ -67,14 +67,14 @@ XR.configure({ // XR category configuration The XR Category allows a Sumerian scene to be rendered into an DIV HTML element with `loadScene` method. When the scene is loaded successfully, *XR.start()* method will start the scene. To render the scene, pass your scene name and the id of the element in the method call: ```js -// Load scene with sceneName: "scene1" into dom element id: "sumarian-scene-dom-id" +// Load scene with sceneName: "scene1" into dom element id: "sumerian-scene-dom-id" async loadAndStartScene() { await XR.loadScene("scene1", "sumerian-scene-dom-id"); XR.start("scene1"); } // HTML -
+
``` ## Scene API @@ -93,7 +93,7 @@ async loadAndStartScene() { progressCallback } - await XR.loadScene("scene1", "sumarian-scene-dom-id", sceneOptions); + await XR.loadScene("scene1", "sumerian-scene-dom-id", sceneOptions); XR.start("scene1"); } ```