Skip to content

Commit bb36711

Browse files
committed
Fix typo
1 parent 8446f48 commit bb36711

File tree

1 file changed

+3
-3
lines changed
  • spring-boot-test/src/main/java/org/springframework/boot/test/json

1 file changed

+3
-3
lines changed

spring-boot-test/src/main/java/org/springframework/boot/test/json/JsonbTester.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public class JsonbTester<T> extends AbstractJsonMarshalTester<T> {
5858
private final Jsonb jsonb;
5959

6060
/**
61-
* Create a new uninitialized {@link GsonTester} instance.
61+
* Create a new uninitialized {@link JsonbTester} instance.
6262
* @param jsonb the Jsonb instance
6363
*/
6464
protected JsonbTester(Jsonb jsonb) {
@@ -93,7 +93,7 @@ protected T readObject(Reader reader, ResolvableType type) throws IOException {
9393
* Utility method to initialize {@link JsonbTester} fields. See {@link JsonbTester
9494
* class-level documentation} for example usage.
9595
* @param testInstance the test instance
96-
* @param jsonb the Gson instance
96+
* @param jsonb the Jsonb instance
9797
*/
9898
public static void initFields(Object testInstance, Jsonb jsonb) {
9999
new JsonbFieldInitializer().initFields(testInstance, jsonb);
@@ -103,7 +103,7 @@ public static void initFields(Object testInstance, Jsonb jsonb) {
103103
* Utility method to initialize {@link JsonbTester} fields. See {@link JsonbTester
104104
* class-level documentation} for example usage.
105105
* @param testInstance the test instance
106-
* @param jsonb an object factory to create the Gson instance
106+
* @param jsonb an object factory to create the Jsonb instance
107107
*/
108108
public static void initFields(Object testInstance, ObjectFactory<Jsonb> jsonb) {
109109
new JsonbTester.JsonbFieldInitializer().initFields(testInstance, jsonb);

0 commit comments

Comments
 (0)