Skip to content

Commit de1a77e

Browse files
authored
Improve consistency of Testcontainers name in docs (#5866)
1 parent 459d2f6 commit de1a77e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/contributing_docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing to documentation
22

3-
The testcontainers-java documentation is a static site built with [MkDocs](https://www.mkdocs.org/).
3+
The Testcontainers-java documentation is a static site built with [MkDocs](https://www.mkdocs.org/).
44
We use the [Material for MkDocs](https://squidfunk.github.io/mkdocs-material/) theme, which offers a number of useful extensions to MkDocs.
55

66
In addition we use a [custom plugin](https://github.com/rnorth/mkdocs-codeinclude-plugin) for inclusion of code snippets.

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Using Gradle 5.0 or higher, you can add the following to the `dependencies` sect
9393
Testcontainers depends on other libraries (like docker-java) for it to work.
9494
Some of them (JUnit, docker-java-{api,transport} and its transitive dependencies, JNA, visible-assertions and others) are part of our public API.
9595
But there are also "private", implementation detail dependencies (e.g., docker-java-core, Guava, OkHttp, etc.) that are not exposed to public API but prone to conflicts with test code/application under test code.
96-
As such, **these libraries are 'shaded' into the core testcontainers JAR** and relocated under `org.testcontainers.shaded` to prevent class conflicts.
96+
As such, **these libraries are 'shaded' into the core Testcontainers JAR** and relocated under `org.testcontainers.shaded` to prevent class conflicts.
9797

9898
## Sponsors
9999

docs/modules/databases/orientdb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Note that it's based on the [official Docker image](https://hub.docker.com/_/ori
1010

1111
## Usage example
1212

13-
Declare your Testcontainer as a `@ClassRule` or `@Rule` in a JUnit 4 test or as static or member attribute of a JUnit 5 test annotated with `@Container` as you would with other Testcontainers.
13+
Declare your Testcontainers instance as a `@ClassRule` or `@Rule` in a JUnit 4 test or as static or member attribute of a JUnit 5 test annotated with `@Container` as you would with other Testcontainers.
1414
You can call `getDbUrl()` OrientDB container and build the `ODatabaseSession` by your own, but a more useful `getSession()` method is provided.
1515
On the JVM you would most likely use the [Java driver](https://github.com/).
1616

@@ -39,7 +39,7 @@ The following example uses the JUnit 5 extension `@Testcontainers` and demonstra
3939
}
4040
```
4141

42-
You are not limited to Unit tests and can of course use an instance of the OrientDB Testcontainer in vanilla Java code as well.
42+
You are not limited to Unit tests and can of course use an instance of the OrientDB Testcontainers implementation in vanilla Java code as well.
4343

4444

4545
## Adding this module to your project dependencies

0 commit comments

Comments
 (0)