Updated generated doc comments

This commit is contained in:
2019-03-24 20:35:40 -06:00
parent 5b8983eea2
commit f3226fa5cc
2 changed files with 5 additions and 5 deletions

View File

@ -117,14 +117,14 @@ func Ul(attribs ...hatmill.Attrib) func(children ...hatmill.Term) *hatmill.Paren
}
}
// Disabled creates a disabled attribute
// Disabled creates a "disabled" attribute
func Disabled() hatmill.Attrib {
return hatmill.Attrib{
Key: "disabled",
}
}
// Id creates a id attribute
// Id creates a "id" attribute
func Id(value string) hatmill.Attrib {
return hatmill.Attrib{
Key: "id",
@ -132,7 +132,7 @@ func Id(value string) hatmill.Attrib {
}
}
// Src creates a src attribute
// Src creates a "src" attribute
func Src(value string) hatmill.Attrib {
return hatmill.Attrib{
Key: "src",