From 86f2d8694c86b7830e92fabd25c18784a2a17007 Mon Sep 17 00:00:00 2001 From: Christopher Allen <91000890+ChrisCoastal@users.noreply.github.com> Date: Fri, 17 Nov 2023 03:39:41 -0800 Subject: [PATCH] update: grammar in getting-started/step1-content.md (#45) --- src/data/tutorial/getting-started/step1-content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/tutorial/getting-started/step1-content.md b/src/data/tutorial/getting-started/step1-content.md index b038b5eb0..46168e89b 100644 --- a/src/data/tutorial/getting-started/step1-content.md +++ b/src/data/tutorial/getting-started/step1-content.md @@ -5,11 +5,11 @@ Welcome to the PixiJS tutorial! Please go through the tutorial steps at your own pace and challenge yourself using the editor on the right hand side. Here PixiJS has already been included as guided under the [Getting Started](/guides/basics/getting-started#loading-pixijs) section. Let's start with the creation of a PixiJS canvas application and add its view to the DOM. ```javascript -// Create a PixiJS application of type cavas with specify background color and make it resizes to the iframe window +// Create a PixiJS application of type canvas with specify background color and make it resize to the iframe window const app = new PIXI.Application() < HTMLCanvasElement > { background: '#1099bb', resizeTo: window }; // Adding the application's view to the DOM document.body.appendChild(app.view); ``` -When you are ready, proceed to the next exercise using the _Next >_ button below or feel free to skip to any exercise using the drop-down menu on the top right hand corner of the card. +When you are ready, proceed to the next exercise using the _Next >_ button below, or feel free to skip to any exercise using the drop-down menu on the top right hand corner of the card.