Minor spelling fixes in strings, comments and non-code files. (#1236)

Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
This commit is contained in:
Christen Lofland
2025-08-04 19:19:57 -05:00
committed by GitHub
parent 48aaefbf12
commit bf4d1038d6
29 changed files with 52 additions and 52 deletions

View File

@@ -24,7 +24,7 @@ void main() {
ivec2 uv = ivec2(gl_GlobalInvocationID.xy);
// Just in case the texture size is not divisable by 8.
// Just in case the texture size is not divisible by 8.
if ((uv.x > size.x) || (uv.y > size.y)) {
return;
}