From 3ff308403a8608489706c18fc0c888e38e7dfedb Mon Sep 17 00:00:00 2001 From: 67 <67@gd67.com> Date: Fri, 11 Nov 2022 15:44:26 +0800 Subject: [PATCH] Fix two typos in integration.adoc and webflux.adoc - Change "you ca" to "you can" in webflux.adoc - English names can be used in "month" field instead of "day-of-month" field in cron expressions in integration.adoc Closes gh-29469 --- src/docs/asciidoc/integration.adoc | 2 +- src/docs/asciidoc/web/webflux.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/asciidoc/integration.adoc b/src/docs/asciidoc/integration.adoc index 70bb1333a3c7..2c6648afcd3c 100644 --- a/src/docs/asciidoc/integration.adoc +++ b/src/docs/asciidoc/integration.adoc @@ -5350,7 +5350,7 @@ asterisk. * Two numbers separated with a hyphen (`-`) express a range of numbers. The specified range is inclusive. * Following a range (or `*`) with `/` specifies the interval of the number's value through the range. -* English names can also be used for the day-of-month and day-of-week fields. +* English names can also be used for the month and day-of-week fields. Use the first three letters of the particular day or month (case does not matter). * The day-of-month and day-of-week fields can contain a `L` character, which has a different meaning ** In the day-of-month field, `L` stands for _the last day of the month_. diff --git a/src/docs/asciidoc/web/webflux.adoc b/src/docs/asciidoc/web/webflux.adoc index 2af2c4c93234..52adcac4efde 100644 --- a/src/docs/asciidoc/web/webflux.adoc +++ b/src/docs/asciidoc/web/webflux.adoc @@ -1541,7 +1541,7 @@ extracts the name, version, and file extension: URI path patterns can also have embedded `${...}` placeholders that are resolved on startup through `PropertySourcesPlaceholderConfigurer` against local, system, environment, and -other property sources. You ca use this to, for example, parameterize a base URL based on +other property sources. You can use this to, for example, parameterize a base URL based on some external configuration. NOTE: Spring WebFlux uses `PathPattern` and the `PathPatternParser` for URI path matching support.