Fix typographical error in comment in r4056
authorwhesse@chromium.org <whesse@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Mon, 8 Mar 2010 16:01:40 +0000 (16:01 +0000)
committerwhesse@chromium.org <whesse@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Mon, 8 Mar 2010 16:01:40 +0000 (16:01 +0000)
Review URL: http://codereview.chromium.org/668258

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4057 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/ast.h

index 5d4f4f72e304e8043aff796712b0a2c7b8ed6c0a..13ef6c82a7f3992dd13b70d6da6bf63159371a3a 100644 (file)
--- a/src/ast.h
+++ b/src/ast.h
@@ -241,7 +241,7 @@ class Expression: public AstNode {
     bitfields_ |= SideEffectFreeField::encode(is_side_effect_free);
   }
 
-  // Will ToInt32 ECMA 262-3 9.5) or ToUunt32 (ECMA 262-3 9.6)
+  // Will ToInt32 (ECMA 262-3 9.5) or ToUint32 (ECMA 262-3 9.6)
   // be applied to the value of this expression?
   // If so, we may be able to optimize the calculation of the value.
   bool to_int32() { return ToInt32Field::decode(bitfields_); }