mirror of
https://github.com/RPCSX/SPIRV-Tools.git
synced 2024-12-02 16:36:18 +00:00
Fix Go lint issues: comment exported symbols (#3014)
This commit is contained in:
parent
3724cfbea8
commit
d9fbf02348
@ -66,10 +66,14 @@ type Parameter struct {
|
||||
Name string `json:"name"`
|
||||
}
|
||||
|
||||
// Quantifier indicates the number of times the quantified term may appear.
|
||||
type Quantifier string
|
||||
|
||||
const (
|
||||
// The quantified term may appear exactly once.
|
||||
Once Quantifier = ""
|
||||
// The quantified term may appear zero or one time; an optional term.
|
||||
ZeroOrOnce Quantifier = "?"
|
||||
// The quantified term may appear any number of times.
|
||||
ZeroOrMany Quantifier = "*"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user