From 80407c0ee1ddd7d8d981e9d87139629d924d707e Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Mon, 31 Jan 2022 16:45:29 -0500 Subject: internal/cvss: clean up comments --- internal/cvss/v30vector.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'internal/cvss/v30vector.go') diff --git a/internal/cvss/v30vector.go b/internal/cvss/v30vector.go index 951cd03..0d835a0 100644 --- a/internal/cvss/v30vector.go +++ b/internal/cvss/v30vector.go @@ -44,22 +44,22 @@ func (v v30Vector) Metrics() []Metric { // Create CVSS 3.0 vector from string. func newV30Vector(s string) (Vector, error) { + // strip version prefix, split into metric strings strs := strings.Split(s[len(v31Prefix):], "/") r := make([]v3Metric, len(strs)) - // walk metric strings + // build results for i, ms := range(strs) { - // convert metric string to metric + // get metric from string m, err := getV3Metric(V30, ms) if err != nil { return nil, err } - // add to results r[i] = m } - // build and return vector + // return result return v30Vector(r), nil } -- cgit v1.2.3