Skip to content

Commit

Permalink
Fixed some nits
Browse files Browse the repository at this point in the history
  • Loading branch information
tKabiawu committed Jun 23, 2023
1 parent a7be986 commit 84df29b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chromium/preloadlist/preloadlist.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ type PreloadList struct {
Entries []Entry `json:"entries"`
}

// PolicyType represents the policy under which the domain was added to the preload list
// PolicyType represents the policy under which the domain was added to the preload list.
type PolicyType string

// Possible PolicyType values are as defined by
// https://source.chromium.org/chromium/chromium/src/+/main:net/http/transport_security_state_static.json
const (
// Domains with an unspecified policy type
// Domains with an unspecified policy type.
UnspecifiedPolicyType = ""
// test domains
// Test domains.
Test PolicyType = "test"
// Google-owned sites.
Google = "google"
Expand Down

0 comments on commit 84df29b

Please sign in to comment.