From 3fa5ca9e56170f73c4d45b192d82156fa9ba5b82 Mon Sep 17 00:00:00 2001 From: Brandon Dyck Date: Sun, 28 Apr 2019 11:40:41 -0600 Subject: [PATCH] go fmt --- attribute/accesskey.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/attribute/accesskey.go b/attribute/accesskey.go index aba0160..6522994 100644 --- a/attribute/accesskey.go +++ b/attribute/accesskey.go @@ -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}), + } }