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)