Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tkrodriguez committed Jun 3, 2022
1 parent a6a1664 commit e5d311c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

/**
* The phase that does the work of {@link CanonicalizerPhase#applyIncremental}. This phase contains
* mutable state so it should only created and used transiently.
* mutable state so it should only be created and used transiently.
*/
public class IncrementalCanonicalizerPhase extends CanonicalizerPhase {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,11 +215,9 @@ public interface ApplyScope {
}

/**
* An extension point for subclasses, called at the start of
* {@link BasePhase#apply(StructuredGraph, Object, boolean)}. The return value is a
* {@link ApplyScope} which will surround all the work performed by the {@link #apply}. This
* allows subclaseses to inject work which will performed before and after the application of
* this phase.
* Return an {@link ApplyScope} which will surround all the work performed by the call to
* {@link #run} in {@link #apply(StructuredGraph, Object, boolean)}. This allows subclaseses to
* inject work which will performed before and after the application of this phase.
*/
@SuppressWarnings("unused")
protected ApplyScope applyScope(StructuredGraph graph, C context) {
Expand Down

0 comments on commit e5d311c

Please sign in to comment.