# HG changeset patch # User Bernhard Urban # Date 1377790100 -7200 # Node ID c66cdfb7445b4b3e492ac4dae6427bd0c93059c0 # Parent 906d0cdf9c515af4be250964e211d51e6f849798 ConvertDeoptimizeToGuardPhase: small javadoc fix diff -r 906d0cdf9c51 -r c66cdfb7445b graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/ConvertDeoptimizeToGuardPhase.java --- a/graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/ConvertDeoptimizeToGuardPhase.java Thu Aug 29 17:17:35 2013 +0200 +++ b/graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/ConvertDeoptimizeToGuardPhase.java Thu Aug 29 17:28:20 2013 +0200 @@ -34,7 +34,7 @@ * This phase will find branches which always end with a {@link DeoptimizeNode} and replace their * {@link ControlSplitNode ControlSplitNodes} with {@link FixedGuardNode FixedGuardNodes}. * - * This is useful because {@link FixedGuardNode FixedGuardNodes FixedGuardNodess} will be lowered to + * This is useful because {@link FixedGuardNode FixedGuardNodes} will be lowered to * {@link GuardNode GuardNodes} which can later be optimized more aggressively than control-flow * constructs. *