summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Forbes <chrisf@ijw.co.nz>2014-04-21 15:55:58 +1200
committerChris Forbes <chrisf@ijw.co.nz>2014-04-21 16:02:02 +1200
commit9fec560e63acd665870db9ab02f702ca677ce910 (patch)
treed7f0217bb1483e7a6190b8310673a9a5969327c7
parentd63026f62ac0d9c4674a93d12843ea96e77b3c5e (diff)
glsl: Fix typo
Signed-off-by: Chris Forbes <chrisf@ijw.co.nz>
-rw-r--r--src/glsl/ast_to_hir.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp
index 52cc7721dfe..35d58e90830 100644
--- a/src/glsl/ast_to_hir.cpp
+++ b/src/glsl/ast_to_hir.cpp
@@ -3219,7 +3219,7 @@ ast_declarator_list::hir(exec_list *instructions,
/* From page 22 (page 28 of the PDF) of the GLSL 1.10 specification;
*
* "Global variables can only use the qualifiers const,
- * attribute, uni form, or varying. Only one may be
+ * attribute, uniform, or varying. Only one may be
* specified.
*
* Local variables can only use the qualifier const."