Fix and improve Javadoc in spring-webflux

Closes gh-28790
This commit is contained in:
Marc Wrobel
2022-07-11 23:15:26 +02:00
committed by Sam Brannen
parent 5b1a84e395
commit 31c6965c7f
34 changed files with 44 additions and 44 deletions

View File

@@ -288,7 +288,7 @@ public class DefaultWebClientTests {
.defaultCookie("baz", "qux")
.build();
// Now, verify what each client has..
// Now, verify what each client has.
WebClient.Builder builder1 = client1.mutate();
builder1.filters(filters -> assertThat(filters.size()).isEqualTo(1));

View File

@@ -44,7 +44,7 @@ import static org.springframework.web.bind.annotation.RequestMethod.PUT;
*/
public class RequestMethodsRequestConditionTests {
// TODO: custom method, CORS pre-flight (see @Disabledd)
// TODO: custom method, CORS pre-flight (see @Disabled)
@Test
public void getMatchingCondition() throws Exception {

View File

@@ -168,7 +168,7 @@ public class RequestMappingMessageConversionIntegrationTests extends AbstractReq
assertThat(responseEntity.getBody()).isNull();
// As we're on the same connection, the 2nd request proves server response handling
// did complete after the 1st request..
// did complete after the 1st request.
responseEntity = performGet("/person-response/mono-empty", JSON, Person.class);
assertThat(responseEntity.getHeaders().getContentLength()).isEqualTo(0);
assertThat(responseEntity.getBody()).isNull();

View File

@@ -67,7 +67,7 @@ import org.springframework.web.testfixture.http.server.reactive.bootstrap.Tomcat
import org.springframework.web.testfixture.http.server.reactive.bootstrap.UndertowHttpServer;
/**
* Base class for WebSocket integration tests. Sub-classes must implement
* Base class for WebSocket integration tests. Subclasses must implement
* {@link #getWebConfigClass()} to return Spring config class with (server-side)
* handler mappings to {@code WebSocketHandler}'s.
*