Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2022-03-09 17:02:04 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-03-09 17:07:38 +0300
commitbeaf2baeffc9a15eba53a61460573948319fecf4 (patch)
tree1b08d4b58783f279d79da4c91d0b6f789052299e /source/blender/python
parentef3d76fbaa37110fd857f3aabff815600e43915a (diff)
Cleanup: fix wrong spelling of texture and indentation
Contributed by luzpaz. Ref D14271, D14270
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/gpu/gpu_py_texture.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/gpu/gpu_py_texture.c b/source/blender/python/gpu/gpu_py_texture.c
index ab038423878..0ad55aeac78 100644
--- a/source/blender/python/gpu/gpu_py_texture.c
+++ b/source/blender/python/gpu/gpu_py_texture.c
@@ -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,
};