aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rubric_config.go2
-rw-r--r--runner.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/rubric_config.go b/rubric_config.go
index 322e58a..d533a7b 100644
--- a/rubric_config.go
+++ b/rubric_config.go
@@ -56,7 +56,7 @@ type Defaults struct {
adapters_ map[string] InheritableConfig
/*
- The configs_ field is necessary to property
+ The configs_ field is necessary to properly
implement the Inherit method using a common
interface.
*/
diff --git a/runner.go b/runner.go
index b543cc0..bce7cbc 100644
--- a/runner.go
+++ b/runner.go
@@ -13,7 +13,7 @@ type Runner struct {
}
func (r Runner) adapterCfgs() []AdapterConfig {
- cgs := make([]AdapterConfig, len(r.adapters))
+ cgs := make([]AdapterConfig, 0)
for _, adapter := range r.adapters {
cgs = append(cgs, adapter.Config())