diff --git a/d2cli/main.go b/d2cli/main.go index 289f242db..395a162f1 100644 --- a/d2cli/main.go +++ b/d2cli/main.go @@ -373,7 +373,7 @@ func compile(ctx context.Context, ms *xmain.State, plugin d2plugin.Plugin, rende } var out []byte if len(boards) > 0 { - out := boards[0] + out = boards[0] if animateInterval > 0 { out, err = d2animate.Wrap(diagram, boards, renderOpts, int(animateInterval)) if err != nil { diff --git a/d2graph/d2graph.go b/d2graph/d2graph.go index 6d7e845af..ac0e5b1b8 100644 --- a/d2graph/d2graph.go +++ b/d2graph/d2graph.go @@ -385,7 +385,7 @@ func (s *Style) Apply(key, value string) error { break } if !go2.Contains(textTransforms, strings.ToLower(value)) { - return fmt.Errorf(`expected "text-transform" to be one of (%s)`, strings.Join(textTransforms, ",")) + return fmt.Errorf(`expected "text-transform" to be one of (%s)`, strings.Join(textTransforms, ", ")) } s.TextTransform.Value = value default: