summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2015-06-09 09:14:17 -0600
committerBrian Paul <[email protected]>2015-06-09 10:49:35 -0600
commitc10dc485f395d3b8d616bf2857bcdef9712dc47b (patch)
tree2b2aa2055a64f55612f0094da112bc4640cebf7e
parent37e0677870febefdd8b89be335f0e97bfd4a7c9b (diff)
glsl: fix comment typo: s/accpet/accept/
-rw-r--r--src/glsl/ir_hierarchical_visitor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ir_hierarchical_visitor.h b/src/glsl/ir_hierarchical_visitor.h
index faa52fd79c0..cac78698e73 100644
--- a/src/glsl/ir_hierarchical_visitor.h
+++ b/src/glsl/ir_hierarchical_visitor.h
@@ -59,7 +59,7 @@ enum ir_visitor_status {
* in the composite's \c accept method. The \c accept method for a leaf-node
* class will simply call the \c visit method, as usual, and pass its return
* value on. The \c accept method for internal-node classes will call the \c
- * visit_enter method, call the \c accpet method of each child node, and,
+ * visit_enter method, call the \c accept method of each child node, and,
* finally, call the \c visit_leave method. If any of these return a value
* other that \c visit_continue, the correct action must be taken.
*