Skip to content

Commit 4062237

Browse files
SimonVerhoevenschauder
authored andcommitted
Update readme.
Cleanup. Original pull request #1636
1 parent 2c0de7b commit 4062237

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

spring-data-jdbc/README.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ If you are new to Spring Data JDBC read the following two articles https://sprin
2323
There are also examples in the https://github.com/spring-projects/spring-data-examples/tree/master/jdbc[Spring Data Examples] project.
2424

2525
A very good source of information is the source code in this repository.
26-
Especially the integration tests (if you are reading this on github, type `t` and then `IntegrationTests.java`)
26+
Especially the integration tests (if you are reading this on GitHub, type `t` and then `IntegrationTests.java`)
2727

28-
We are keeping an eye on the (soon to be created) https://stackoverflow.com/questions/tagged/spring-data-jdbc[spring-data-jdbc tag on stackoverflow].
28+
We are keeping an eye on the https://stackoverflow.com/questions/tagged/spring-data-jdbc[spring-data-jdbc tag on Stack Overflow].
2929

30-
If you think you found a bug, or have a feature request please https://github.com/spring-projects/spring-data-jdbc/issues[create a ticket in our issue tracker].
30+
If you think you found a bug, or have a feature request, please https://github.com/spring-projects/spring-data-jdbc/issues[create a ticket in our issue tracker].
3131

3232
== Execute Tests
3333

@@ -44,7 +44,7 @@ This will execute unit tests and integration tests using an in-memory database.
4444

4545
=== Running tests with a real database
4646

47-
In order to run the integration tests against a specific database you need to have a local Docker installation available, and then execute.
47+
In order to run the integration tests against a specific database, you need to have a local Docker installation available, and then execute.
4848

4949
[source]
5050
----
@@ -53,16 +53,16 @@ mvn test -Dspring.profiles.active=<databasetype>
5353

5454
This will also execute the unit tests.
5555

56-
Currently the following _databasetypes_ are available:
56+
Currently, the following _databasetypes_ are available:
5757

5858
* hsql (default, does not require a running database)
5959
* mysql
6060
* postgres
6161
* mariadb
6262
* mssql
6363

64-
Testing with Microsoft SQL Server requires you to accept the EULA of the Microsoft SQL Server Docker image, so the build may download and run it for you.
65-
In order to accept the EULA please add a file named `container-license-acceptance.txt` to the classpath, i.e. `src/test/resources` with the content:
64+
Testing with Microsoft SQL Server requires you to accept the EULA of the Microsoft SQL Server Docker image so that the build may download and run it for you.
65+
In order to accept the EULA, please add a file named `container-license-acceptance.txt` to the classpath, i.e. `src/test/resources` with the content:
6666

6767
```
6868
microsoft/mssql-server-linux:2017-CU6
@@ -75,4 +75,4 @@ microsoft/mssql-server-linux:2017-CU6
7575
mvn test -Pall-dbs
7676
----
7777

78-
This will execute the unit tests, and all the integration tests with all the databases we currently support for testing. Running the integration-tests depends on Docker.
78+
This will execute the unit tests and all the integration tests with all the databases we currently support for testing. Running the integration-tests depends on Docker.

0 commit comments

Comments
 (0)