Skip to content

Commit fdcf77f

Browse files
committed
Merge pull request #20313 from YooInKeun
* pr/20313: Fix typos in documentation Closes gh-20313
2 parents 000b6d3 + ec20246 commit fdcf77f

File tree

1 file changed

+2
-2
lines changed
  • spring-boot-project/spring-boot-docs/src/main/asciidoc

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2036,7 +2036,7 @@ If you like to use a different `DataSource`, you can create one and mark its `@B
20362036
If you do so and want two data sources, remember to create another one and mark it as `@Primary`.
20372037
Alternatively, you can use Flyway's native `DataSource` by setting `spring.flyway.[url,user,password]` in external properties.
20382038
Setting either `spring.flyway.url` or `spring.flyway.user` is sufficient to cause Flyway to use its own `DataSource`.
2039-
If any of the three properties has not be set, the value of its equivalent `spring.datasource` property will be used.
2039+
If any of the three properties has not been set, the value of its equivalent `spring.datasource` property will be used.
20402040

20412041
You can also use Flyway to provide data for specific scenarios.
20422042
For example, you can place test-specific migrations in `src/test/resources` and they are run only when your application starts for testing.
@@ -2567,7 +2567,7 @@ For example, to indicate that JRuby should be flagged for unpacking by using the
25672567
[[howto-create-a-nonexecutable-jar]]
25682568
=== Create a Non-executable JAR with Exclusions
25692569
Often, if you have an executable and a non-executable jar as two separate build products, the executable version has additional configuration files that are not needed in a library jar.
2570-
For example, the `application.yml` configuration file might by excluded from the non-executable JAR.
2570+
For example, the `application.yml` configuration file might be excluded from the non-executable JAR.
25712571

25722572
In Maven, the executable jar must be the main artifact and you can add a classified jar for the library, as follows:
25732573

0 commit comments

Comments
 (0)