about summary refs log tree commit diff stats
path: root/gomponents.go
diff options
context:
space:
mode:
authorMarkus Wüstenberg2024-10-03 11:36:45 +0200
committerMarkus Wüstenberg2024-10-03 11:36:45 +0200
commit52357fc500662a01f72b9c7ae5b016a68a5c1da1 (patch)
treed2f89b1e20e752a55484d1097043a676dfb37edf /gomponents.go
parentc094266ccbc2cb4ebac4e2f2f6f9aee5c5740db8 (diff)
downloadgomponents-52357fc500662a01f72b9c7ae5b016a68a5c1da1.tar.lz
gomponents-52357fc500662a01f72b9c7ae5b016a68a5c1da1.tar.zst
gomponents-52357fc500662a01f72b9c7ae5b016a68a5c1da1.zip
Remove mention of SVG package in doc comments
Diffstat (limited to 'gomponents.go')
-rw-r--r--gomponents.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/gomponents.go b/gomponents.go
index cdc87a1..735ad00 100644
--- a/gomponents.go
+++ b/gomponents.go
@@ -4,16 +4,17 @@
 // to the given writer as a string.
 //
 // All DOM elements and attributes can be created by using the [El] and [Attr] functions.
+//
 // The functions [Text], [Textf], [Raw], and [Rawf] can be used to create text nodes, either HTML-escaped or unescaped.
+//
 // See also helper functions [Map], [If], and [Iff] for mapping data to nodes and inserting them conditionally.
+//
 // There's also the [Group] type, which is a slice of [Node]-s that can be rendered as one [Node].
 //
 // For basic HTML elements and attributes, see the package html.
 //
 // For higher-level HTML components, see the package components.
 //
-// For SVG elements and attributes, see the package svg.
-//
 // For HTTP helpers, see the package http.
 package gomponents