Title: [239734] trunk/Source/_javascript_Core
Revision
239734
Author
mark....@apple.com
Date
2019-01-08 12:09:58 -0800 (Tue, 08 Jan 2019)

Log Message

Fix some typos in comments.

Not reviewed.

* dfg/DFGIntegerRangeOptimizationPhase.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (239733 => 239734)


--- trunk/Source/_javascript_Core/ChangeLog	2019-01-08 19:41:41 UTC (rev 239733)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-01-08 20:09:58 UTC (rev 239734)
@@ -1,3 +1,11 @@
+2019-01-08  Mark Lam  <mark....@apple.com>
+
+        Fix some typos in comments.
+
+        Not reviewed.
+
+        * dfg/DFGIntegerRangeOptimizationPhase.cpp:
+
 2019-01-08  Tadeu Zagallo  <tzaga...@apple.com>
 
         LLInt put_by_id uses the wrong load instruction for loading flags from the metadata

Modified: trunk/Source/_javascript_Core/dfg/DFGIntegerRangeOptimizationPhase.cpp (239733 => 239734)


--- trunk/Source/_javascript_Core/dfg/DFGIntegerRangeOptimizationPhase.cpp	2019-01-08 19:41:41 UTC (rev 239733)
+++ trunk/Source/_javascript_Core/dfg/DFGIntegerRangeOptimizationPhase.cpp	2019-01-08 20:09:58 UTC (rev 239734)
@@ -1043,7 +1043,7 @@
         //
         // We merge two lists by merging each relationship in one list with each relationship
         // in the other list. Merging two relationships will yield a relationship list; as with
-        // all such lists it is an intersction. Merging relationships over different variables
+        // all such lists it is an intersection. Merging relationships over different variables
         // always yields the empty list (i.e. TOP). This merge style is sound because if we
         // have:
         //
@@ -1085,7 +1085,7 @@
         // TOP relationship (i.e. no relationships in the relationship list). The merge rule
         // when between the current relationshipsAtHead and the relationships being propagated
         // from a predecessor ensures monotonicity by converting disagreements into one of a
-        // small set of "general" relationships. There are 12 such relationshis, plus TOP. See
+        // small set of "general" relationships. There are 12 such relationships, plus TOP. See
         // the comment above Relationship::merge() for details.
         bool changed = true;
         while (changed) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to