summaryrefslogtreecommitdiffstats
path: root/src/compiler
diff options
context:
space:
mode:
authorGwan-gyeong Mun <[email protected]>2017-11-25 23:08:23 +0900
committerTimothy Arceri <[email protected]>2017-11-28 08:48:55 +1100
commit4cb27047c8576ccfffa83be04a8b93e5aaa7f4ec (patch)
tree1fc3ffb5e74b364258c81bcbdec6f504320f7841 /src/compiler
parentc7616ac06973a80c3c6e9def49a3fa6606ba6097 (diff)
glsl: Fix typo nagivation -> navigation
Signed-off-by: Mun Gwan-gyeong <[email protected]> Reviewed-by: Nicolai Hähnle <[email protected]> Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/glsl/ir_hierarchical_visitor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/ir_hierarchical_visitor.h b/src/compiler/glsl/ir_hierarchical_visitor.h
index 824b05e73d8..5f5acd041b8 100644
--- a/src/compiler/glsl/ir_hierarchical_visitor.h
+++ b/src/compiler/glsl/ir_hierarchical_visitor.h
@@ -54,7 +54,7 @@ enum ir_visitor_status {
* returning \c visit_stop), or stop visiting sibling nodes (by returning \c
* visit_continue_with_parent).
*
- * These two changes combine to allow nagivation of children to be implemented
+ * These two changes combine to allow navigation of children to be implemented
* 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