diff options
Diffstat (limited to 'attr/attributes.go')
-rw-r--r-- | attr/attributes.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/attr/attributes.go b/attr/attributes.go index bc157cb..938d762 100644 --- a/attr/attributes.go +++ b/attr/attributes.go @@ -26,8 +26,8 @@ func (c Classes) Render(w io.Writer) error { return g.Attr("class", strings.Join(included, " ")).Render(w) } -func (c Classes) Place() g.Placement { - return g.Inside +func (c Classes) Type() g.NodeType { + return g.AttributeType } // String satisfies fmt.Stringer. |