Skip to content

Commit a853687

Browse files
authored
Docs: Fix typo. (#31046)
1 parent 1d6ae39 commit a853687

16 files changed

+17
-17
lines changed

examples/jsm/postprocessing/AfterimagePass.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class AfterimagePass extends Pass {
9191

9292
/**
9393
* The damping intensity, from 0.0 to 1.0. A higher value means a stronger after image effect.
94-
*
94+
*
9595
* @type {number}
9696
*/
9797
get damp() {
@@ -154,7 +154,7 @@ class AfterimagePass extends Pass {
154154
* Sets the size of the pass.
155155
*
156156
* @param {number} width - The width to set.
157-
* @param {number} height - The width to set.
157+
* @param {number} height - The height to set.
158158
*/
159159
setSize( width, height ) {
160160

examples/jsm/postprocessing/BloomPass.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ class BloomPass extends Pass {
167167
* Sets the size of the pass.
168168
*
169169
* @param {number} width - The width to set.
170-
* @param {number} height - The width to set.
170+
* @param {number} height - The height to set.
171171
*/
172172
setSize( width, height ) {
173173

examples/jsm/postprocessing/BokehPass.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ class BokehPass extends Pass {
179179
* Sets the size of the pass.
180180
*
181181
* @param {number} width - The width to set.
182-
* @param {number} height - The width to set.
182+
* @param {number} height - The height to set.
183183
*/
184184
setSize( width, height ) {
185185

examples/jsm/postprocessing/GTAOPass.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ class GTAOPass extends Pass {
242242
* Sets the size of the pass.
243243
*
244244
* @param {number} width - The width to set.
245-
* @param {number} height - The width to set.
245+
* @param {number} height - The height to set.
246246
*/
247247
setSize( width, height ) {
248248

examples/jsm/postprocessing/HalftonePass.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class HalftonePass extends Pass {
108108
* Sets the size of the pass.
109109
*
110110
* @param {number} width - The width to set.
111-
* @param {number} height - The width to set.
111+
* @param {number} height - The height to set.
112112
*/
113113
setSize( width, height ) {
114114

examples/jsm/postprocessing/OutlinePass.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ class OutlinePass extends Pass {
269269
* Sets the size of the pass.
270270
*
271271
* @param {number} width - The width to set.
272-
* @param {number} height - The width to set.
272+
* @param {number} height - The height to set.
273273
*/
274274
setSize( width, height ) {
275275

examples/jsm/postprocessing/Pass.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class Pass {
6969
*
7070
* @abstract
7171
* @param {number} width - The width to set.
72-
* @param {number} height - The width to set.
72+
* @param {number} height - The height to set.
7373
*/
7474
setSize( /* width, height */ ) {}
7575

examples/jsm/postprocessing/RenderPixelatedPass.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ class RenderPixelatedPass extends Pass {
121121
* Sets the size of the pass.
122122
*
123123
* @param {number} width - The width to set.
124-
* @param {number} height - The width to set.
124+
* @param {number} height - The height to set.
125125
*/
126126
setSize( width, height ) {
127127

examples/jsm/postprocessing/RenderTransitionPass.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ class RenderTransitionPass extends Pass {
129129
* Sets the size of the pass.
130130
*
131131
* @param {number} width - The width to set.
132-
* @param {number} height - The width to set.
132+
* @param {number} height - The height to set.
133133
*/
134134
setSize( width, height ) {
135135

examples/jsm/postprocessing/SAOPass.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ class SAOPass extends Pass {
294294
* Sets the size of the pass.
295295
*
296296
* @param {number} width - The width to set.
297-
* @param {number} height - The width to set.
297+
* @param {number} height - The height to set.
298298
*/
299299
setSize( width, height ) {
300300

0 commit comments

Comments
 (0)