Title: [211340] trunk/Source/WebCore
Revision
211340
Author
[email protected]
Date
2017-01-28 14:35:17 -0800 (Sat, 28 Jan 2017)

Log Message

Fix typo in error message
https://bugs.webkit.org/show_bug.cgi?id=167554

Patch by Joseph Pecoraro <[email protected]> on 2017-01-28
Reviewed by Sam Weinig.

* bindings/scripts/CodeGenerator.pm:
(GetEnumByType):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (211339 => 211340)


--- trunk/Source/WebCore/ChangeLog	2017-01-28 18:16:41 UTC (rev 211339)
+++ trunk/Source/WebCore/ChangeLog	2017-01-28 22:35:17 UTC (rev 211340)
@@ -1,3 +1,13 @@
+2017-01-28  Joseph Pecoraro  <[email protected]>
+
+        Fix typo in error message
+        https://bugs.webkit.org/show_bug.cgi?id=167554
+
+        Reviewed by Sam Weinig.
+
+        * bindings/scripts/CodeGenerator.pm:
+        (GetEnumByType):
+
 2017-01-28  Antoine Quint  <[email protected]>
 
         [Modern Media Controls] REGRESSION: Video stops playing after going into Full Screen in media documents

Modified: trunk/Source/WebCore/bindings/scripts/CodeGenerator.pm (211339 => 211340)


--- trunk/Source/WebCore/bindings/scripts/CodeGenerator.pm	2017-01-28 18:16:41 UTC (rev 211339)
+++ trunk/Source/WebCore/bindings/scripts/CodeGenerator.pm	2017-01-28 22:35:17 UTC (rev 211340)
@@ -440,7 +440,7 @@
 
     my $name = $type->name;
 
-    die "GetEnumByName() was called with an undefined enumeration name" unless defined($name);
+    die "GetEnumByType() was called with an undefined enumeration name" unless defined($name);
 
     for my $enumeration (@{$useDocument->enumerations}) {
         return $enumeration if $enumeration->type->name eq $name;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to