Fix "meth" go-mode snippet

This commit is contained in:
2019-12-09 11:28:33 +00:00
parent f22b24d20a
commit a6fd747e9a

View File

@@ -1,6 +1,6 @@
# name: struct method
# key: meth
# --
func (${1:s *${2:Struct}) ${3:name}($4) $5 {
func (${1:s *${2:Struct}}) ${3:name}($4) $5 {
$0
}