Browse Source

docs: Fix a few typos (#25753)

There are small typos in:
- examples/jsm/loaders/ColladaLoader.js
- examples/jsm/loaders/SVGLoader.js

Fixes:
- Should read `width` rather than `witdh`.
- Should read `process` rather than `procces`.

Signed-off-by: Tim Gates <[email protected]>
Tim Gates 2 years ago
parent
commit
b43490260c
2 changed files with 2 additions and 2 deletions
  1. 1 1
      examples/jsm/loaders/ColladaLoader.js
  2. 1 1
      examples/jsm/loaders/SVGLoader.js

+ 1 - 1
examples/jsm/loaders/ColladaLoader.js

@@ -962,7 +962,7 @@ class ColladaLoader extends Loader {
 
 
 			let i, j, l;
 			let i, j, l;
 
 
-			// procces skin data for each vertex
+			// process skin data for each vertex
 
 
 			for ( i = 0, l = vcount.length; i < l; i ++ ) {
 			for ( i = 0, l = vcount.length; i < l; i ++ ) {
 
 

+ 1 - 1
examples/jsm/loaders/SVGLoader.js

@@ -2384,7 +2384,7 @@ class SVGLoader extends Loader {
 
 
 	static pointsToStroke( points, style, arcDivisions, minDistance ) {
 	static pointsToStroke( points, style, arcDivisions, minDistance ) {
 
 
-		// Generates a stroke with some witdh around the given path.
+		// Generates a stroke with some width around the given path.
 		// The path can be open or closed (last point equals to first point)
 		// The path can be open or closed (last point equals to first point)
 		// Param points: Array of Vector2D (the path). Minimum 2 points.
 		// Param points: Array of Vector2D (the path). Minimum 2 points.
 		// Param style: Object with SVG properties as returned by SVGLoader.getStrokeStyle(), or SVGLoader.parse() in the path.userData.style object
 		// Param style: Object with SVG properties as returned by SVGLoader.getStrokeStyle(), or SVGLoader.parse() in the path.userData.style object