mirror of
https://github.com/RPCSX/SPIRV-Tools.git
synced 2024-12-03 17:01:06 +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"`
|
Name string `json:"name"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Quantifier indicates the number of times the quantified term may appear.
|
||||||
type Quantifier string
|
type Quantifier string
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
// The quantified term may appear exactly once.
|
||||||
Once Quantifier = ""
|
Once Quantifier = ""
|
||||||
|
// The quantified term may appear zero or one time; an optional term.
|
||||||
ZeroOrOnce Quantifier = "?"
|
ZeroOrOnce Quantifier = "?"
|
||||||
|
// The quantified term may appear any number of times.
|
||||||
ZeroOrMany Quantifier = "*"
|
ZeroOrMany Quantifier = "*"
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user