Skip to content

Commit 99981f8

Browse files
Fix typos (#9783)
Co-authored-by: Eddú Meléndez Gonzales <[email protected]>
1 parent df40cd8 commit 99981f8

File tree

26 files changed

+47
-47
lines changed

26 files changed

+47
-47
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@
281281
## [1.1.8] - 2017-01-22
282282
### Fixed
283283
- Compatibility fixes for Docker for Mac v1.13.0 ([\#272](https://github.com/testcontainers/testcontainers-java/issues/272))
284-
- Relax docker environment disk space check to accomodate unusual empty `df` output observed on Docker for Mac with OverlayFS ([\#273](https://github.com/testcontainers/testcontainers-java/issues/273), [\#278](https://github.com/testcontainers/testcontainers-java/issues/278))
284+
- Relax docker environment disk space check to accommodate unusual empty `df` output observed on Docker for Mac with OverlayFS ([\#273](https://github.com/testcontainers/testcontainers-java/issues/273), [\#278](https://github.com/testcontainers/testcontainers-java/issues/278))
285285
- Fix inadvertent private-scoping of startup checks' `StartupStatus`, which made implementation of custom startup checks impossible ([\#266](https://github.com/testcontainers/testcontainers-java/issues/266))
286286
- Fix potential resource lead/deadlock when errors are encountered building images from a Dockerfile ([\#274](https://github.com/testcontainers/testcontainers-java/issues/274))
287287

core/src/main/java/org/testcontainers/utility/ResourceReaper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ static class FilterRegistry {
368368
* Registers the given filters with Ryuk
369369
*
370370
* @param filters the filter to register
371-
* @return true if the filters have been registered successfuly, false otherwise
371+
* @return true if the filters have been registered successfully, false otherwise
372372
* @throws IOException if communication with Ryuk fails
373373
*/
374374
protected boolean register(List<Map.Entry<String, String>> filters) throws IOException {

core/src/test/java/org/testcontainers/junit/DependenciesTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public void shouldWorkWithSimpleDependency() {
3737
}
3838

3939
@Test
40-
public void shouldWorkWithMutlipleDependencies() {
40+
public void shouldWorkWithMultipleDependencies() {
4141
InvocationCountingStartable startable1 = new InvocationCountingStartable();
4242
InvocationCountingStartable startable2 = new InvocationCountingStartable();
4343

core/src/test/java/org/testcontainers/utility/LazyFutureTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
public class LazyFutureTest {
2222

2323
@Test
24-
public void testLazyness() throws Exception {
24+
public void testLaziness() throws Exception {
2525
AtomicInteger counter = new AtomicInteger();
2626

2727
Future<Integer> lazyFuture = new LazyFuture<Integer>() {

docs/contributing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
* Star the project on [Github](https://github.com/testcontainers/testcontainers-java) and help spread the word :)
3+
* Star the project on [GitHub](https://github.com/testcontainers/testcontainers-java) and help spread the word :)
44
* Join our [Slack workspace](http://slack.testcontainers.org)
55
* [Start a discussion](https://github.com/testcontainers/testcontainers-java/discussions) if you have an idea, find a possible bug or have a general question.
66
* Contribute improvements or fixes using a [Pull Request](https://github.com/testcontainers/testcontainers-java/pulls). If you're going to contribute, thank you! Please just be sure to:
@@ -97,7 +97,7 @@ We will evaluate incubating modules periodically, and remove the label when appr
9797
Since we generally get a lot of Dependabot PRs, we regularly combine them into single commits.
9898
For this, we are using the [gh-combine-prs](https://github.com/rnorth/gh-combine-prs) extension for [GitHub CLI](https://cli.github.com/).
9999

100-
The whole process is as follow:
100+
The whole process is as follows:
101101

102102
1. Check that all open Dependabot PRs did succeed their build. If they did not succeed, trigger a rerun if the cause were external factors or else document the reason if obvious.
103103
2. Run the extension from an up-to-date local `main` branch: `gh combine-prs --query "author:app/dependabot"`

docs/contributing_docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ foo.doSomething();
8484

8585
Note that:
8686

87-
* Any code included will be have its indentation reduced
87+
* Any code included will have its indentation reduced
8888
* Every line in the source file will be searched for an instance of the token (e.g. `doFoo`). If more than one line
8989
includes that token, then potentially more than one block could be targeted for inclusion. It is advisable to use a
9090
specific, unique token to avoid unexpected behaviour.

docs/modules/azure.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ CosmosDBEmulatorContainer | [mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emula
2222
Start Azurite Emulator during a test:
2323

2424
<!--codeinclude-->
25-
[Starting a Azurite container](../../modules/azure/src/test/java/org/testcontainers/azure/AzuriteContainerTest.java) inside_block:emulatorContainer
25+
[Starting an Azurite container](../../modules/azure/src/test/java/org/testcontainers/azure/AzuriteContainerTest.java) inside_block:emulatorContainer
2626
<!--/codeinclude-->
2727

2828
!!! note
@@ -32,11 +32,11 @@ If the tested application needs to use more than one set of credentials, the con
3232
Please see some examples below.
3333

3434
<!--codeinclude-->
35-
[Starting a Azurite Blob container with one account and two keys](../../modules/azure/src/test/java/org/testcontainers/azure/AzuriteContainerTest.java) inside_block:withTwoAccountKeys
35+
[Starting an Azurite Blob container with one account and two keys](../../modules/azure/src/test/java/org/testcontainers/azure/AzuriteContainerTest.java) inside_block:withTwoAccountKeys
3636
<!--/codeinclude-->
3737

3838
<!--codeinclude-->
39-
[Starting a Azurite Blob container with more accounts and keys](../../modules/azure/src/test/java/org/testcontainers/azure/AzuriteContainerTest.java) inside_block:withMoreAccounts
39+
[Starting an Azurite Blob container with more accounts and keys](../../modules/azure/src/test/java/org/testcontainers/azure/AzuriteContainerTest.java) inside_block:withMoreAccounts
4040
<!--/codeinclude-->
4141

4242
#### Using with Blob
@@ -140,7 +140,7 @@ Configure the sender and the processor clients:
140140
Start Azure CosmosDB Emulator during a test:
141141

142142
<!--codeinclude-->
143-
[Starting a Azure CosmosDB Emulator container](../../modules/azure/src/test/java/org/testcontainers/containers/CosmosDBEmulatorContainerTest.java) inside_block:emulatorContainer
143+
[Starting an Azure CosmosDB Emulator container](../../modules/azure/src/test/java/org/testcontainers/containers/CosmosDBEmulatorContainerTest.java) inside_block:emulatorContainer
144144
<!--/codeinclude-->
145145

146146
Prepare KeyStore to use for SSL.

docs/modules/databases/jdbc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ By default database container is being stopped as soon as last connection is clo
135135

136136
`jdbc:tc:mysql:8.0.36:///databasename?TC_DAEMON=true`
137137

138-
With this parameter database container will keep running even when there're no open connections.
138+
With this parameter database container will keep running even when there's no open connections.
139139
140140
141141
### Running container with tmpfs options

docs/modules/kafka.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Now your tests or any other process running on your machine can get access to ru
4343
Create a `ConfluentKafkaContainer` to use it in your tests:
4444

4545
<!--codeinclude-->
46-
[Creating a ConlfuentKafkaContainer](../../modules/kafka/src/test/java/org/testcontainers/kafka/ConfluentKafkaContainerTest.java) inside_block:constructorWithVersion
46+
[Creating a ConfluentKafkaContainer](../../modules/kafka/src/test/java/org/testcontainers/kafka/ConfluentKafkaContainerTest.java) inside_block:constructorWithVersion
4747
<!--/codeinclude-->
4848

4949
### Using org.testcontainers.kafka.KafkaContainer

docs/modules/typesense.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Testcontainers module for [Typesense](https://hub.docker.com/r/typesense/typesen
44

55
## TypesenseContainer's usage examples
66

7-
You can start an Typesense container instance from any Java application by using:
7+
You can start a Typesense container instance from any Java application by using:
88

99
<!--codeinclude-->
1010
[Typesense container](../../modules/typesense/src/test/java/org/testcontainers/typesense/TypesenseContainerTest.java) inside_block:container

0 commit comments

Comments
 (0)