From 0676163f5241c235bc4fde322f0de4cf9200f932 Mon Sep 17 00:00:00 2001 From: "antonm@chromium.org" Date: Tue, 27 Apr 2010 13:02:23 +0000 Subject: [PATCH] Fix copy paste: IsUint32() checks if value is unsigned, not signed. Review URL: http://codereview.chromium.org/1762008 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4513 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- include/v8.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/v8.h b/include/v8.h index 4941767..e777fa6 100644 --- a/include/v8.h +++ b/include/v8.h @@ -767,7 +767,7 @@ class V8EXPORT Value : public Data { bool IsInt32() const; /** - * Returns true if this value is a 32-bit signed integer. + * Returns true if this value is a 32-bit unsigned integer. */ bool IsUint32() const; -- 2.7.4