1
0
mirror of https://github.com/hexolan/stocklet.git synced 2026-05-20 11:39:24 +01:00

feat: go report card

fix: comment and log misspellings
This commit is contained in:
2025-03-13 16:11:01 +00:00
parent b31f08186c
commit 25303851d5
21 changed files with 46 additions and 42 deletions
+1 -1
View File
@@ -65,6 +65,6 @@ func (cfg *SharedConfig) Load() error {
return err
}
// Config succesfully loaded
// Config successfully loaded
return nil
}
+2 -2
View File
@@ -32,9 +32,9 @@ func (cfg *KafkaConfig) Load() error {
return err
}
// Comma seperate the kafka brokers
// Comma separate the kafka brokers
cfg.Brokers = strings.Split(brokersOpt, ",")
// Config options were succesfully loaded
// Config options were successfully loaded
return nil
}
+1 -1
View File
@@ -28,6 +28,6 @@ func (cfg *OtelConfig) Load() error {
cfg.CollectorGrpc = collectorGrpc
}
// Succesfully loaded config properties
// Successfully loaded config properties
return nil
}
+1 -1
View File
@@ -80,6 +80,6 @@ func (cfg *PostgresConfig) Load() error {
cfg.Database = opt
}
// Config properties succesfully loaded
// Config properties successfully loaded
return nil
}