Improve docs language

This commit is contained in:
Andras Schmelczer 2026-06-10 22:29:50 +01:00
parent 4d94fdeec8
commit fb40343c40
11 changed files with 45 additions and 45 deletions

View file

@ -2,12 +2,12 @@ export enum WrapOptions {
CLAMP_TO_EDGE = 'CLAMP_TO_EDGE',
/**
* On WebGL it only work with power of 2 texture sizes.
* On WebGL, this only works with power-of-2 texture sizes.
*/
REPEAT = 'REPEAT',
/**
* On WebGL it only work with power of 2 texture sizes.
* On WebGL, this only works with power-of-2 texture sizes.
*/
MIRRORED_REPEAT = 'MIRRORED_REPEAT',
}