Skip to content

Commit 640b97f

Browse files
Banuelorignisnicoll
authored andcommitted
Polish reference guide
See gh-32557
1 parent 1fb99e4 commit 640b97f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

framework-docs/modules/ROOT/pages/web/webflux/controller/ann-methods/jackson.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Kotlin::
8181
----
8282
======
8383

84-
NOTE: `@JsonView` allows an array of view classes but you can only specify only one per
84+
NOTE: `@JsonView` allows an array of view classes but you can specify only one per
8585
controller method. Use a composite interface if you need to activate multiple views.
8686

8787

framework-docs/modules/ROOT/pages/web/webmvc-view/mvc-jackson.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ to render the response content as XML. If the model contains multiple entries, y
3636
explicitly set the object to be serialized by using the `modelKey` bean property. If the
3737
model contains a single entry, it is serialized automatically.
3838

39-
You can customized XML mapping as needed by using JAXB or Jackson's provided
39+
You can customize XML mapping as needed by using JAXB or Jackson's provided
4040
annotations. When you need further control, you can inject a custom `XmlMapper`
4141
through the `ObjectMapper` property, for cases where custom XML
4242
you need to provide serializers and deserializers for specific types.

framework-docs/modules/ROOT/pages/web/webmvc-view/mvc-jsp.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ the HTML would be as follows:
683683
----
684684

685685
What if we want to display the entire list of errors for a given page? The next example
686-
shows that the `errors` tag also supports some basic wildcarding functionality.
686+
shows that the `errors` tag also supports some basic wildcard functionality.
687687

688688
* `path="{asterisk}"`: Displays all errors.
689689
* `path="lastName"`: Displays all errors associated with the `lastName` field.

framework-docs/modules/ROOT/pages/web/webmvc/mvc-ann-async.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -500,8 +500,8 @@ The MVC configuration exposes the following options for asynchronous request pro
500500

501501
You can configure the following:
502502

503-
* Default timeout value for async requests, which if not set, depends
504-
on the underlying Servlet container.
503+
* The default timeout value for async requests depends
504+
on the underlying Servlet container, unless it is set explicitly.
505505
* `AsyncTaskExecutor` to use for blocking writes when streaming with
506506
xref:web/webmvc/mvc-ann-async.adoc#mvc-ann-async-reactive-types[Reactive Types] and for
507507
executing `Callable` instances returned from controller methods.

framework-docs/modules/ROOT/pages/web/webmvc/mvc-ann-rest-exceptions.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Message codes and arguments for each error are also resolved via `MessageSource`
138138
| `MethodArgumentNotValidException`
139139
| (default)
140140
| `+{0}+` the list of global errors, `+{1}+` the list of field errors.
141-
Message codes and arguments for each error are also resolvedvia `MessageSource`.
141+
Message codes and arguments for each error are also resolved via `MessageSource`.
142142

143143
| `MissingRequestHeaderException`
144144
| (default)

0 commit comments

Comments
 (0)