Fix typos of "variable" as "varaible"
authorCarl Worth <cworth@cworth.org>
Thu, 17 Jun 2010 07:37:39 +0000 (00:37 -0700)
committerCarl Worth <cworth@cworth.org>
Wed, 23 Jun 2010 23:12:53 +0000 (16:12 -0700)
One of these was just in a comment. But ther other was in an enum
tag, (which is apparently not being used anywhere yet).

ir.h
ir_hierarchical_visitor.h

diff --git a/ir.h b/ir.h
index f3402a38a16502bae33fa1cc3d571742819169c9..9277f762042a96e4cddde348e0114994e321fd81 100644 (file)
--- a/ir.h
+++ b/ir.h
@@ -134,7 +134,7 @@ enum ir_variable_mode {
    ir_var_inout
 };
 
-enum ir_varaible_interpolation {
+enum ir_variable_interpolation {
    ir_var_smooth = 0,
    ir_var_flat,
    ir_var_noperspective
index af8f83cac560fb82133d039b8777d58c1ef2732a..e741155e19f344ed3995d2c171d0578dc1fc39e0 100644 (file)
@@ -93,7 +93,7 @@ public:
     * nodes can always be handled as variable declarations.  Code that used
     * non-hierarchical visitors had to set an "in a dereference" flag to
     * determine how to handle an ir_variable.  By forcing the visitor to
-    * handle the ir_variable within the ir_dereference_varaible visitor, this
+    * handle the ir_variable within the ir_dereference_variable visitor, this
     * kludge can be avoided.
     *
     * In addition, I can envision no use for having separate enter and leave