changeset 15736:3464575dbe2b

[inlining-2] typos in source comment
author Miguel Garcia <miguel.m.garcia@oracle.com>
date Sun, 18 May 2014 14:15:19 +0200
parents 6ea206e07d55
children 291f0e9875c4
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	Sun May 18 14:08:03 2014 +0200
+++ b/graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/inlining/InliningPhase.java	Sun May 18 14:15:19 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>