Browse Source

Fix a typo in multiple places (#24195)

* Fix a typo in multiple places

* Undo typo fix in build files

Since the build files are auto-generated from the source, the typo
should only have fixed it in the src folder. This commit fixes that

Co-authored-by: Carl Lee Landskron <[email protected]>
Dannie226 3 years ago
parent
commit
7da24e39cf
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/core/InterleavedBufferAttribute.js

+ 3 - 3
src/core/InterleavedBufferAttribute.js

@@ -181,7 +181,7 @@ class InterleavedBufferAttribute {
 
 		if ( data === undefined ) {
 
-			console.log( 'THREE.InterleavedBufferAttribute.clone(): Cloning an interlaved buffer attribute will deinterleave buffer data.' );
+			console.log( 'THREE.InterleavedBufferAttribute.clone(): Cloning an interleaved buffer attribute will deinterleave buffer data.' );
 
 			const array = [];
 
@@ -223,7 +223,7 @@ class InterleavedBufferAttribute {
 
 		if ( data === undefined ) {
 
-			console.log( 'THREE.InterleavedBufferAttribute.toJSON(): Serializing an interlaved buffer attribute will deinterleave buffer data.' );
+			console.log( 'THREE.InterleavedBufferAttribute.toJSON(): Serializing an interleaved buffer attribute will deinterleave buffer data.' );
 
 			const array = [];
 
@@ -250,7 +250,7 @@ class InterleavedBufferAttribute {
 
 		} else {
 
-			// save as true interlaved attribtue
+			// save as true interleaved attribtue
 
 			if ( data.interleavedBuffers === undefined ) {