Skip to content

Commit 5f27a3b

Browse files
committed
Fix typo DEPRECIATED->DEPRECATED
1 parent 7e5c44f commit 5f27a3b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/gpu.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ var GPU = (function() {
6161
//
6262
var ret = this.getSynchronousModeExecutor();
6363
// Allow class refence from function
64-
ret.gpujs = this;
64+
ret.gpujs = this;
6565
// Execute callback
6666
ret.exec = ret.execute = GPUUtils.functionBinder( this.execute, this );
6767

@@ -78,7 +78,7 @@ var GPU = (function() {
7878
/// Get and returns the kernel function previously set by `createKernel`
7979
///
8080
/// Returns:
81-
/// {JS Function} The calling input function
81+
/// {JS Function} The calling input function
8282
///
8383
function getKernelFunction() {
8484
return this._kernelFunction;
@@ -91,7 +91,7 @@ var GPU = (function() {
9191
/// Get and returns the kernel parameter object previously set by `createKernel`
9292
///
9393
/// Returns:
94-
/// {JS Function} The calling input function
94+
/// {JS Function} The calling input function
9595
///
9696
function getKernelParamObj() {
9797
return this._kernelParamObj;
@@ -156,7 +156,7 @@ var GPU = (function() {
156156
///
157157
/// Function: getWebgl
158158
///
159-
/// [DEPRECIATED] Returns the internal gpu webgl instance only if it has been initiated
159+
/// [DEPRECATED] Returns the internal gpu webgl instance only if it has been initiated
160160
///
161161
/// Retuns:
162162
/// {WebGL object} that the instance use
@@ -175,7 +175,7 @@ var GPU = (function() {
175175
///
176176
/// Function: getCanvas
177177
///
178-
/// [DEPRECIATED] Returns the internal canvas instance only if it has been initiated
178+
/// [DEPRECATED] Returns the internal canvas instance only if it has been initiated
179179
///
180180
/// Retuns:
181181
/// {Canvas object} that the instance use
@@ -196,7 +196,7 @@ var GPU = (function() {
196196
// return (this._canvas_gpu || this._canvas_cpu );
197197
// }
198198
// // if( this._canvas_gpu || this._canvas_cpu ) {
199-
// //
199+
// //
200200
// // }
201201
// throw "Missing valid mode parameter in getCanvas("+mode+")"
202202
// }

0 commit comments

Comments
 (0)