changeset 23328:63d8cdbb2c05

Fixed javadoc text
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Tue, 19 Jan 2016 10:49:37 -0800
parents 0912e5d8b1cc
children 3609732616e9
files graal/com.oracle.graal.phases/src/com/oracle/graal/phases/tiers/SuitesProvider.java
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.phases/src/com/oracle/graal/phases/tiers/SuitesProvider.java	Tue Jan 19 14:30:52 2016 +0100
+++ b/graal/com.oracle.graal.phases/src/com/oracle/graal/phases/tiers/SuitesProvider.java	Tue Jan 19 10:49:37 2016 -0800
@@ -32,9 +32,9 @@
 public interface SuitesProvider {
 
     /**
-     * Get the default phase suites of this compiler. This will take in account any options which
-     * enabled at the time of call, returning an appropriately constructed suite. The returned suite
-     * is immutable by default but {@link Suites#copy} can be used to create a customized version.
+     * Get the default phase suites of this compiler. This will take in account any options enabled
+     * at the time of call, returning an appropriately constructed suite. The returned suite is
+     * immutable by default but {@link Suites#copy} can be used to create a customized version.
      */
     Suites getDefaultSuites();
 
@@ -45,9 +45,9 @@
 
     /**
      * Get the default LIR phase suites of this compiler. This will take in account any options
-     * enabled active at the time of call, returning an appropriately constructed suite. The
-     * returned suite is immutable by default but {@link LIRSuites#copy} can be used to create a
-     * customized version.
+     * enabled at the time of call, returning an appropriately constructed suite. The returned suite
+     * is immutable by default but {@link LIRSuites#copy} can be used to create a customized
+     * version.
      */
     LIRSuites getDefaultLIRSuites();
 }