From ef87b25178a65d5f144a4b3a1e40550738d9abf1 Mon Sep 17 00:00:00 2001 From: Henry <91667944+5thAttemptCode@users.noreply.github.com> Date: Sun, 17 Nov 2024 13:31:27 +1300 Subject: [PATCH] docs: fix typo in teleportation section This change fixes a small typo in the documentation. The word "out" was corrected to "our" in the sentence: "Secondly, we need to control our own state because that gives us the complete control when teleportation should be mixed with more complex behaviors." This improves the readability and professionalism of the text. --- docs/tutorials/teleport.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/teleport.md b/docs/tutorials/teleport.md index 52b50724..0d3cf6d1 100644 --- a/docs/tutorials/teleport.md +++ b/docs/tutorials/teleport.md @@ -13,7 +13,7 @@ const store = createXRStore({ }) ``` -Secondly, we need to control out own state because that gives us the complete control when teleportation should be mixed with more complex behaviors. Therefore we're using `useState` to store the current position. But we can also use any other local or global state manager. +Secondly, we need to control our own state because that gives us the complete control when teleportation should be mixed with more complex behaviors. Therefore we're using `useState` to store the current position. But we can also use any other local or global state manager. ```tsx const [position, setPosition] = useState(new Vector3()) @@ -67,4 +67,4 @@ export function App() { } ``` -![Recording of teleport example](./teleport-example.gif) \ No newline at end of file +![Recording of teleport example](./teleport-example.gif)