Skip to content

Commit b695c16

Browse files
authored
Fix typos in some files (#8131)
1 parent 4ff85c6 commit b695c16

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/src/examples/graphics/portal.example.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ assetListLoader.load(() => {
204204
portalEntity.setLocalScale(0.02, 0.02, 0.02);
205205
group.addChild(portalEntity);
206206

207-
// Create a statue entity, whic is visible inside the portal only
207+
// Create a statue entity, which is visible inside the portal only
208208
const statue = assets.statue.resource.instantiateRenderEntity();
209209
statue.addComponent('script');
210210
statue.script.create('portalGeometry', {
@@ -216,7 +216,7 @@ assetListLoader.load(() => {
216216
statue.setLocalScale(0.25, 0.25, 0.25);
217217
group.addChild(statue);
218218

219-
// Create a bitmoji entity, whic is visible outside the portal only
219+
// Create a bitmoji entity, which is visible outside the portal only
220220
const bitmoji = assets.bitmoji.resource.instantiateRenderEntity();
221221
bitmoji.addComponent('script');
222222
bitmoji.script.create('portalGeometry', {

examples/src/examples/graphics/reflection-box.example.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ assetListLoader.load(() => {
289289
farClip: 500
290290
});
291291

292-
// Add a cubemap renderer script, which renders to a cubemap of size 128 with mipmaps, which is directly useable
292+
// Add a cubemap renderer script, which renders to a cubemap of size 128 with mipmaps, which is directly usable
293293
// as a lighting source for envAtlas generation
294294
// Position it in the center of the room.
295295
probe.script.create('cubemapRenderer', {

0 commit comments

Comments
 (0)