From: Carl Worth Date: Thu, 17 Jun 2010 07:37:39 +0000 (-0700) Subject: Fix typos of "variable" as "varaible" X-Git-Tag: mesa-7.9-rc1~1173^2~625^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a22426dc4c934673e8f0af5c70a67505a4de7aad;p=platform%2Fupstream%2Fmesa.git Fix typos of "variable" as "varaible" One of these was just in a comment. But ther other was in an enum tag, (which is apparently not being used anywhere yet). --- diff --git a/ir.h b/ir.h index f3402a3..9277f76 100644 --- 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 diff --git a/ir_hierarchical_visitor.h b/ir_hierarchical_visitor.h index af8f83c..e741155 100644 --- a/ir_hierarchical_visitor.h +++ b/ir_hierarchical_visitor.h @@ -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