Skip to content

Commit

Permalink
doco tweaks for @builder
Browse files Browse the repository at this point in the history
  • Loading branch information
paulk-asert committed Apr 29, 2014
1 parent 0815cc0 commit 2271448
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/main/groovy/transform/builder/Builder.java
Expand Up @@ -30,8 +30,8 @@
* The transform supports multiple building strategies to cover a range of cases and there are a number
* of configuration options to customize the building process.
*
* In addition, a number of annotation attributes let you customise the building process. No all annotation attributes
* are supported by all strategies. See the individual
* In addition, a number of annotation attributes let you customise the building process. Not all annotation attributes
* are supported by all strategies. See the individual strategy documentation for more details.
* If you're an AST hacker, you can also define your own strategy class.
*
* The following strategies are bundled with Groovy:
Expand Down
2 changes: 1 addition & 1 deletion src/main/groovy/transform/builder/DefaultStrategy.java
Expand Up @@ -56,7 +56,7 @@
import static org.objectweb.asm.Opcodes.ACC_SYNTHETIC;

/**
* This strategy is used with the {@code @Builder} AST transform to create a builder helper class
* This strategy is used with the {@link @Builder} AST transform to create a builder helper class
* for the fluent creation of instances of a specified class. It can be used at the class,
* static method or constructor levels.
*
Expand Down
2 changes: 1 addition & 1 deletion src/main/groovy/transform/builder/ExternalStrategy.java
Expand Up @@ -53,7 +53,7 @@
import static org.objectweb.asm.Opcodes.ACC_PRIVATE;

/**
* This strategy is used with the {@code @Builder} AST transform to populate a builder helper class
* This strategy is used with the {@link @Builder} AST transform to populate a builder helper class
* so that it can be used for the fluent creation of instances of a specified class. The specified class is not modified in any way and may be a Java class.
*
* You use it by creating and annotating an explicit builder class which will be filled in by during
Expand Down
2 changes: 1 addition & 1 deletion src/main/groovy/transform/builder/InitializerStrategy.java
Expand Up @@ -60,7 +60,7 @@
import static org.objectweb.asm.Opcodes.ACC_SYNTHETIC;

/**
* This strategy is used with the {@code @Builder} AST transform to create a builder helper class
* This strategy is used with the {@link @Builder} AST transform to create a builder helper class
* for the fluent and type-safe creation of instances of a specified class.
*
* It is modelled roughly on the design outlined here:
Expand Down
2 changes: 1 addition & 1 deletion src/main/groovy/transform/builder/SimpleStrategy.java
Expand Up @@ -41,7 +41,7 @@
import static org.codehaus.groovy.transform.BuilderASTTransformation.NO_EXCEPTIONS;

/**
* This strategy is used with the {@code @Builder} AST transform to modify your Groovy objects so that the
* This strategy is used with the {@link @Builder} AST transform to modify your Groovy objects so that the
* setter methods for properties return the original object, thus allowing chained usage of the setters.
*
* You use it as follows:
Expand Down

0 comments on commit 2271448

Please sign in to comment.