From 0440e5d1acedcf8aef2a9ffe261af5170e7f57a7 Mon Sep 17 00:00:00 2001 From: Yongjo Lee Date: Tue, 10 Jan 2023 01:48:29 +0900 Subject: [PATCH] Fix duplicate 'the' typo See gh-33736 --- .../web/documentation/QuartzEndpointDocumentationTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/documentation/QuartzEndpointDocumentationTests.java b/spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/documentation/QuartzEndpointDocumentationTests.java index 87cb2b9f1b0..9cb6f3257a8 100644 --- a/spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/documentation/QuartzEndpointDocumentationTests.java +++ b/spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/documentation/QuartzEndpointDocumentationTests.java @@ -265,8 +265,8 @@ class QuartzEndpointDocumentationTests extends MockMvcEndpointDocumentationTests "Whether the job should be re-executed if a 'recovery' or 'fail-over' situation is encountered."), fieldWithPath("data.*").description("Job data map as key/value pairs, if any."), fieldWithPath("triggers").description("An array of triggers associated to the job, if any."), - fieldWithPath("triggers.[].group").description("Name of the the trigger group."), - fieldWithPath("triggers.[].name").description("Name of the the trigger."), + fieldWithPath("triggers.[].group").description("Name of the trigger group."), + fieldWithPath("triggers.[].name").description("Name of the trigger."), previousFireTime("triggers.[]."), nextFireTime("triggers.[]."), priority("triggers.[].")))); }