changeset 15706:8e2ed3a0812a

[inlining] typos in source comment
author Miguel Garcia <miguel.m.garcia@oracle.com>
date Fri, 16 May 2014 13:39:12 +0200
parents 619b194bb2a3
children eee32e28151a
files graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/inlining/InliningPhase.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/inlining/InliningPhase.java	Fri May 16 12:03:36 2014 +0200
+++ b/graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/inlining/InliningPhase.java	Fri May 16 13:39:12 2014 +0200
@@ -123,12 +123,12 @@
      * <ul>
      * <li>
      * the first step amounts to backtracking, the 2nd one to delving, and the 3rd one also involves
-     * bakctraking (however after may-be inlining).</li>
+     * backtracking (however after may-be inlining).</li>
      * <li>
      * the choice of abandon-and-backtrack or delve-into is depends on
      * {@link InliningPolicy#isWorthInlining} and {@link InliningPolicy#continueInlining}.</li>
      * <li>
-     * the 3rd choice is picked when both of the previous one aren't picked</li>
+     * the 3rd choice is picked when both of the previous ones aren't picked</li>
      * <li>
      * as part of trying-to-inline, {@link InliningPolicy#isWorthInlining} again sees use, but
      * that's another story.</li>