Cleanup: fix wrong spelling of texture and indentation

Contributed by luzpaz.

Ref D14271, D14270
This commit is contained in:
2022-03-09 15:02:04 +01:00
parent ef3d76fbaa
commit beaf2baeff
6 changed files with 90 additions and 90 deletions

View File

@@ -545,11 +545,11 @@ static struct PyMethodDef pygpu_texture__m_methods[] = {
{NULL, NULL, 0, NULL},
};
PyDoc_STRVAR(pygpu_texure__m_doc, "This module provides utils for textures.");
PyDoc_STRVAR(pygpu_texture__m_doc, "This module provides utils for textures.");
static PyModuleDef pygpu_texture_module_def = {
PyModuleDef_HEAD_INIT,
.m_name = "gpu.texture",
.m_doc = pygpu_texure__m_doc,
.m_doc = pygpu_texture__m_doc,
.m_methods = pygpu_texture__m_methods,
};