Index: Tools/Scripts/webkitpy/style/checkers/cpp.py |
diff --git a/Tools/Scripts/webkitpy/style/checkers/cpp.py b/Tools/Scripts/webkitpy/style/checkers/cpp.py |
index dbc6dc5b4e56aabb64a5bd1e5654973cfa40cc30..637418291d25405a2b7b481c86dc75fc84f2156d 100644 |
--- a/Tools/Scripts/webkitpy/style/checkers/cpp.py |
+++ b/Tools/Scripts/webkitpy/style/checkers/cpp.py |
@@ -3367,7 +3367,7 @@ def check_identifier_name_in_declaration(filename, line_number, line, file_state |
break |
# Declarations of local variables can be in condition expressions |
- # of control flow statements (e.g., "if (RenderObject* p = o->parent())"). |
+ # of control flow statements (e.g., "if (LayoutObject* p = o->parent())"). |
# We remove the keywords and the first parenthesis. |
# |
# Declarations in "while", "if", and "switch" are different from |