Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in core docs form -> from #6786

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/modules/ROOT/pages/reference/extensions/core.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,8 @@ Enable automatic discovery of routes during static initialization.

Used for exclusive filtering scanning of RouteBuilder classes. The exclusive filtering takes precedence over
inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by
comma. For example to exclude all classes starting with Bar use: ++**++/Bar++*++ To exclude all routes form a
specific package use: com/mycompany/bar/++*++ To exclude all routes form a specific package and its sub-packages use
comma. For example to exclude all classes starting with Bar use: ++**++/Bar++*++ To exclude all routes from a
specific package use: com/mycompany/bar/++*++ To exclude all routes from a specific package and its sub-packages use
double wildcards: com/mycompany/bar/++**++ And to exclude all routes from two specific packages use:
com/mycompany/bar/++*++,com/mycompany/stuff/++*++
| List of `string`
Expand All @@ -269,8 +269,8 @@ com/mycompany/bar/++*++,com/mycompany/stuff/++*++

Used for inclusive filtering scanning of RouteBuilder classes. The exclusive filtering takes precedence over
inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by
comma. For example to include all classes starting with Foo use: ++**++/Foo++*++ To include all routes form a
specific package use: com/mycompany/foo/++*++ To include all routes form a specific package and its sub-packages use
comma. For example to include all classes starting with Foo use: ++**++/Foo++*++ To include all routes from a
specific package use: com/mycompany/foo/++*++ To include all routes from a specific package and its sub-packages use
double wildcards: com/mycompany/foo/++**++ And to include all routes from two specific packages use:
com/mycompany/foo/++*++,com/mycompany/stuff/++*++
| List of `string`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ public static class RoutesDiscoveryConfig {
/**
* Used for exclusive filtering scanning of RouteBuilder classes. The exclusive filtering takes precedence over
* inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by
* comma. For example to exclude all classes starting with Bar use: ++**++/Bar++*++ To exclude all routes form a
* specific package use: com/mycompany/bar/++*++ To exclude all routes form a specific package and its sub-packages use
* comma. For example to exclude all classes starting with Bar use: ++**++/Bar++*++ To exclude all routes from a
* specific package use: com/mycompany/bar/++*++ To exclude all routes from a specific package and its sub-packages use
* double wildcards: com/mycompany/bar/++**++ And to exclude all routes from two specific packages use:
* com/mycompany/bar/++*++,com/mycompany/stuff/++*++
*
Expand All @@ -140,8 +140,8 @@ public static class RoutesDiscoveryConfig {
/**
* Used for inclusive filtering scanning of RouteBuilder classes. The exclusive filtering takes precedence over
* inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by
* comma. For example to include all classes starting with Foo use: ++**++/Foo++*++ To include all routes form a
* specific package use: com/mycompany/foo/++*++ To include all routes form a specific package and its sub-packages use
* comma. For example to include all classes starting with Foo use: ++**++/Foo++*++ To include all routes from a
* specific package use: com/mycompany/foo/++*++ To include all routes from a specific package and its sub-packages use
* double wildcards: com/mycompany/foo/++**++ And to include all routes from two specific packages use:
* com/mycompany/foo/++*++,com/mycompany/stuff/++*++
*
Expand Down