From 2741e5a85a069795a43ff7e864820a5722e39d30 Mon Sep 17 00:00:00 2001 From: GniLudio <50866361+GniLudio@users.noreply.github.com> Date: Thu, 20 Jun 2024 10:30:30 +0200 Subject: [PATCH] Fix typo in step1-content.md --- src/tutorials/v8.0.0/gettingStarted/step1-content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tutorials/v8.0.0/gettingStarted/step1-content.md b/src/tutorials/v8.0.0/gettingStarted/step1-content.md index 10b2baa93..1bc30d086 100644 --- a/src/tutorials/v8.0.0/gettingStarted/step1-content.md +++ b/src/tutorials/v8.0.0/gettingStarted/step1-content.md @@ -8,7 +8,7 @@ We will be using an asynchronous immediately invoked function expression ([IIFE] ## Application Setup -Let's create the application and initialize it within the the IIFE before appending the its canvas to the DOM. If you came from PixiJS v7 or below, the key differences to pay attention to is that application options are now passed in as an object parameter to the `init` call, and that it is asynchronous which should be awaited before proceeding to use the application. +Let's create the application and initialize it within the the IIFE before appending the canvas to the DOM. If you came from PixiJS v7 or below, the key differences to pay attention to is that application options are now passed in as an object parameter to the `init` call, and that it is asynchronous which should be awaited before proceeding to use the application. ```javascript const app = new Application();