fix some language grammar

This commit is contained in:
Bixilon 2023-09-27 03:18:02 +02:00
parent da72408b9e
commit ab525b7d27
No known key found for this signature in database
GPG Key ID: 5CAD791931B09AC4
2 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ The whole render system gets loaded, as soon as you tell eros to connect to a se
Textures that don't get modified anymore (like block textures or items). Textures that don't get modified anymore (like block textures or items).
The textures are stored in 5 dimensional way (2d for x and y coordinates, 1d for the texture index (aka. what texture), 1d for the resolution (like `16x16` or `32x32`) and the last dimension for mipmaps). The textures are stored in 5 dimensional way (2d for x and y coordinates, 1d for the texture index (aka. what texture), 1d for the resolution (like `16x16` or `32x32`) and the last dimension for mipmaps).
Every vertex can have an additional animation id, that is done via a uniform buffer. Every vertex can have an additional animation id, that is done via an uniform buffer.
### Dynamic textures ### Dynamic textures

View File

@ -29,9 +29,9 @@ data class SizeOverride(
val string = this!!.toString() val string = this!!.toString()
val iterator = string.codePoints().iterator() val iterator = string.codePoints().iterator()
if (!iterator.hasNext()) throw IllegalArgumentException("Not a unicode string $this") if (!iterator.hasNext()) throw IllegalArgumentException("Not an unicode string $this")
val code = iterator.nextInt() val code = iterator.nextInt()
if (iterator.hasNext()) throw IllegalArgumentException("Not a unicode string $this") if (iterator.hasNext()) throw IllegalArgumentException("Not an unicode string $this")
return code return code
} }