Skip to content

Commit

Permalink
Fix wrong module names
Browse files Browse the repository at this point in the history
  • Loading branch information
anilsenay committed Oct 14, 2023
1 parent 7381f04 commit bc9c1af
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/modules/neo4j.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ When starting the Neo4j container, you can pass options in a variadic way to con
#### Image

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

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

Expand Down
2 changes: 1 addition & 1 deletion modules/elasticsearch/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func defaultOptions() *Options {
// Compiler check to ensure that Option implements the testcontainers.ContainerCustomizer interface.
var _ testcontainers.ContainerCustomizer = (*Option)(nil)

// Option is an option for the Redpanda container.
// Option is an option for the Elasticsearch container.
type Option func(*Options)

// Customize is a NOOP. It's defined to satisfy the testcontainers.ContainerCustomizer interface.
Expand Down
2 changes: 1 addition & 1 deletion modules/gcloud/gcloud.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func defaultOptions() options {
// Compiler check to ensure that Option implements the testcontainers.ContainerCustomizer interface.
var _ testcontainers.ContainerCustomizer = (*Option)(nil)

// Option is an option for the Redpanda container.
// Option is an option for the GCloud container.
type Option func(*options)

// Customize is a NOOP. It's defined to satisfy the testcontainers.ContainerCustomizer interface.
Expand Down
2 changes: 1 addition & 1 deletion modules/nats/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func defaultOptions() options {
// Compiler check to ensure that Option implements the testcontainers.ContainerCustomizer interface.
var _ testcontainers.ContainerCustomizer = (*CmdOption)(nil)

// CmdOption is an option for the Redpanda container.
// CmdOption is an option for the NATS container.
type CmdOption func(opts *options)

// Customize is a NOOP. It's defined to satisfy the testcontainers.ContainerCustomizer interface.
Expand Down
2 changes: 1 addition & 1 deletion modules/rabbitmq/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ type SSLSettings struct {
// Compiler check to ensure that Option implements the testcontainers.ContainerCustomizer interface.
var _ testcontainers.ContainerCustomizer = (*Option)(nil)

// Option is an option for the Redpanda container.
// Option is an option for the RabbitMQ container.
type Option func(*options)

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

0 comments on commit bc9c1af

Please sign in to comment.