Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wrong module names in docs and comments #1776

Merged
merged 1 commit into from
Oct 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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