Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: edit casing of email (#30)
Signed-off-by: John Speed Meyers <jsmeyers@chainguard.dev>
  • Loading branch information
jspeed-meyers committed Apr 25, 2022
1 parent 6b6070c commit 0a1487e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cyclonedx.go
Expand Up @@ -330,7 +330,7 @@ const (
type IdentifiableAction struct {
Timestamp string `json:"timestamp,omitempty" xml:"timestamp,omitempty"`
Name string `json:"name,omitempty" xml:"name,omitempty"`
EMail string `json:"email,omitempty" xml:"email,omitempty"`
Email string `json:"email,omitempty" xml:"email,omitempty"`
}

type ImpactAnalysisJustification string
Expand Down Expand Up @@ -481,7 +481,7 @@ type Note struct {

type OrganizationalContact struct {
Name string `json:"name,omitempty" xml:"name,omitempty"`
EMail string `json:"email,omitempty" xml:"email,omitempty"`
Email string `json:"email,omitempty" xml:"email,omitempty"`
Phone string `json:"phone,omitempty" xml:"phone,omitempty"`
}

Expand Down

0 comments on commit 0a1487e

Please sign in to comment.