From: antonm@chromium.org Date: Tue, 27 Apr 2010 13:02:23 +0000 (+0000) Subject: Fix copy paste: IsUint32() checks if value is unsigned, not signed. X-Git-Tag: upstream/4.7.83~21934 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0676163f5241c235bc4fde322f0de4cf9200f932;p=platform%2Fupstream%2Fv8.git 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 --- 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;