# HG changeset patch # User Lukas Stadler # Date 1366637907 -7200 # Node ID 898045a71791b42764ce53e7066dfd33dd660de7 # Parent c08d340ba2bf5b7f16ea6608e1d17a9a7224caf8 fix typo in MacroSubstitution and MethodSubstitution diff -r c08d340ba2bf -r 898045a71791 graal/com.oracle.graal.api.replacements/src/com/oracle/graal/api/replacements/MethodSubstitution.java --- a/graal/com.oracle.graal.api.replacements/src/com/oracle/graal/api/replacements/MethodSubstitution.java Mon Apr 22 15:38:01 2013 +0200 +++ b/graal/com.oracle.graal.api.replacements/src/com/oracle/graal/api/replacements/MethodSubstitution.java Mon Apr 22 15:38:27 2013 +0200 @@ -59,7 +59,7 @@ * Determines if this method should be substituted in all cases, even if inlining thinks it is * not important. * - * Not that this is still depending on whether inlining sees the correct call target, so it's + * Note that this is still depending on whether inlining sees the correct call target, so it's * only a hard guarantee for static and special invocations. */ boolean forced() default false; diff -r c08d340ba2bf -r 898045a71791 graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/spi/MacroSubstitution.java --- a/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/spi/MacroSubstitution.java Mon Apr 22 15:38:01 2013 +0200 +++ b/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/spi/MacroSubstitution.java Mon Apr 22 15:38:27 2013 +0200 @@ -78,7 +78,7 @@ * Determines if this method should be substituted in all cases, even if inlining thinks it is * not important. * - * Not that this is still depending on whether inlining sees the correct call target, so it's + * Note that this is still depending on whether inlining sees the correct call target, so it's * only a hard guarantee for static and special invocations. */ boolean forced() default false;