about summary refs log tree commit diff stats
path: root/attr
diff options
context:
space:
mode:
Diffstat (limited to 'attr')
-rw-r--r--attr/attributes.go4
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.