glsl: fix comment typo: s/accpet/accept/
authorBrian Paul <brianp@vmware.com>
Tue, 9 Jun 2015 15:14:17 +0000 (09:14 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 9 Jun 2015 16:49:35 +0000 (10:49 -0600)
src/glsl/ir_hierarchical_visitor.h

index faa52fd79c0deeffe7764c0c7addb65d8826f19f..cac78698e73fbbe2ec74757bf88db695f1d1e021 100644 (file)
@@ -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.
  *