This commit is contained in:
Brandon Dyck 2019-04-28 11:40:41 -06:00
parent fe2baa121f
commit 3fa5ca9e56

View File

@ -3,8 +3,8 @@ package attribute
import "gitlab.codemonkeysoftware.net/b/hatmill"
func Accesskey(value rune) hatmill.Attrib {
return hatmill.Attrib {
Key: "accesskey",
Value: string([]rune{value}),
}
return hatmill.Attrib{
Key: "accesskey",
Value: string([]rune{value}),
}
}