Skip to content

Commit bc9c1af

Browse files
committed
Fix wrong module names
1 parent 7381f04 commit bc9c1af

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/modules/neo4j.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ When starting the Neo4j container, you can pass options in a variadic way to con
4848
#### Image
4949

5050
If you need to set a different Neo4j Docker image, you can use `testcontainers.WithImage` with a valid Docker image
51-
for Couchbase. E.g. `testcontainers.WithImage("docker.io/neo4j:4.4")`.
51+
for Neo4j. E.g. `testcontainers.WithImage("docker.io/neo4j:4.4")`.
5252

5353
By default, the container will use the following Docker image:
5454

modules/elasticsearch/options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func defaultOptions() *Options {
2424
// Compiler check to ensure that Option implements the testcontainers.ContainerCustomizer interface.
2525
var _ testcontainers.ContainerCustomizer = (*Option)(nil)
2626

27-
// Option is an option for the Redpanda container.
27+
// Option is an option for the Elasticsearch container.
2828
type Option func(*Options)
2929

3030
// Customize is a NOOP. It's defined to satisfy the testcontainers.ContainerCustomizer interface.

modules/gcloud/gcloud.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func defaultOptions() options {
5353
// Compiler check to ensure that Option implements the testcontainers.ContainerCustomizer interface.
5454
var _ testcontainers.ContainerCustomizer = (*Option)(nil)
5555

56-
// Option is an option for the Redpanda container.
56+
// Option is an option for the GCloud container.
5757
type Option func(*options)
5858

5959
// Customize is a NOOP. It's defined to satisfy the testcontainers.ContainerCustomizer interface.

modules/nats/options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func defaultOptions() options {
1919
// Compiler check to ensure that Option implements the testcontainers.ContainerCustomizer interface.
2020
var _ testcontainers.ContainerCustomizer = (*CmdOption)(nil)
2121

22-
// CmdOption is an option for the Redpanda container.
22+
// CmdOption is an option for the NATS container.
2323
type CmdOption func(opts *options)
2424

2525
// Customize is a NOOP. It's defined to satisfy the testcontainers.ContainerCustomizer interface.

modules/rabbitmq/options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ type SSLSettings struct {
4040
// Compiler check to ensure that Option implements the testcontainers.ContainerCustomizer interface.
4141
var _ testcontainers.ContainerCustomizer = (*Option)(nil)
4242

43-
// Option is an option for the Redpanda container.
43+
// Option is an option for the RabbitMQ container.
4444
type Option func(*options)
4545

4646
// Customize is a NOOP. It's defined to satisfy the testcontainers.ContainerCustomizer interface.

0 commit comments

Comments
 (0)