Skip to content

Commit fc76333

Browse files
committed
Fix name of static ParameterizedTypeBuilder method in Javadoc
1 parent fb82055 commit fc76333

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/ch/jalu/typeresolver/typeimpl/ParameterizedTypeBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* Builder to create parameterized types programmatically.
2020
* <p>
2121
* Example:<pre>{@code
22-
* ParameterizedType pt = newTypeFromClass(Optional.class)
22+
* ParameterizedType pt = parameterizedTypeBuilder(Optional.class)
2323
* .withTypeArg(0, String.class)
2424
* .build();
2525
* // pt = Optional<String>

0 commit comments

Comments
 (0)