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

docs: fix comment corruption #2262

Merged
merged 1 commit into from
Feb 23, 2024
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
3 changes: 2 additions & 1 deletion internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ var (
tcConfigOnce *sync.Once = new(sync.Once)
)

// Config represents the configuration for Testcontainers
// testcontainersConfig {

// Config represents the configuration for Testcontainers
type Config struct {
Host string `properties:"docker.host,default="`
TLSVerify int `properties:"docker.tls.verify,default=0"`
Expand Down
2 changes: 2 additions & 0 deletions logconsumer.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const StdoutLog = "STDOUT"
const StderrLog = "STDERR"

// logStruct {

// Log represents a message that was created by a process,
// LogType is either "STDOUT" or "STDERR",
// Content is the byte contents of the message itself
Expand All @@ -18,6 +19,7 @@ type Log struct {
// }

// logConsumerInterface {

// LogConsumer represents any object that can
// handle a Log, it is up to the LogConsumer instance
// what to do with the log
Expand Down
2 changes: 2 additions & 0 deletions modules/couchbase/couchbase.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import (

const (
// containerPorts {

MGMT_PORT = "8091"
MGMT_SSL_PORT = "18091"

Expand All @@ -40,6 +41,7 @@ const (

KV_PORT = "11210"
KV_SSL_PORT = "11207"

// }
)

Expand Down
1 change: 1 addition & 0 deletions modules/couchbase/storage_mode.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ package couchbase
type indexStorageMode string

// storageTypes {

const (
// MemoryOptimized sets the cluster-wide index storage mode to use memory optimized global
// secondary indexes which can perform index maintenance and index scan faster at in-memory speeds.
Expand Down
2 changes: 2 additions & 0 deletions modules/neo4j/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@ type LabsPlugin string

const (
// labsPlugins {

Apoc LabsPlugin = "apoc"
ApocCore LabsPlugin = "apoc-core"
Bloom LabsPlugin = "bloom"
GraphDataScience LabsPlugin = "graph-data-science"
NeoSemantics LabsPlugin = "n10s"
Streams LabsPlugin = "streams"

// }
)

Expand Down
1 change: 1 addition & 0 deletions options.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ func WithImage(image string) CustomizeRequestOption {
}

// imageSubstitutor {

// ImageSubstitutor represents a way to substitute container image names
type ImageSubstitutor interface {
// Description returns the name of the type and a short description of how it modifies the image.
Expand Down
1 change: 1 addition & 0 deletions testing.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ func SkipIfDockerDesktop(t *testing.T, ctx context.Context) {
}

// exampleLogConsumer {

// StdoutLogConsumer is a LogConsumer that prints the log to stdout
type StdoutLogConsumer struct{}

Expand Down
Loading