Browse Source

Merge pull request #10799 from takahirox/FixTypos

Fix typos
Mr.doob 8 years ago
parent
commit
9ad8a4e01c
2 changed files with 2 additions and 2 deletions
  1. 1 1
      examples/js/loaders/GLTFLoader.js
  2. 1 1
      src/objects/Skeleton.js

+ 1 - 1
examples/js/loaders/GLTFLoader.js

@@ -2049,7 +2049,7 @@ THREE.GLTFLoader = ( function () {
 
 										} else {
 
-											console.warn( "WARNING: joint: ''" + jointId + "' could not be found" );
+											console.warn( "WARNING: joint: '" + jointId + "' could not be found" );
 
 										}
 

+ 1 - 1
src/objects/Skeleton.js

@@ -64,7 +64,7 @@ function Skeleton( bones, boneInverses, useVertexTexture ) {
 
 		} else {
 
-			console.warn( 'THREE.Skeleton bonInverses is the wrong length.' );
+			console.warn( 'THREE.Skeleton boneInverses is the wrong length.' );
 
 			this.boneInverses = [];