mirror of
https://github.com/PuerkitoBio/goquery
synced 2025-10-06 01:07:06 +08:00
doc fixes
This commit is contained in:
@@ -21,6 +21,11 @@ func (this *Selection) AddSelection(sel *Selection) *Selection {
|
||||
return this.AddNodes(sel.Nodes...)
|
||||
}
|
||||
|
||||
// Union() is an alias for AddSelection().
|
||||
func (this *Selection) Union(sel *Selection) *Selection {
|
||||
return this.AddSelection(sel)
|
||||
}
|
||||
|
||||
// AddNodes() adds the specified nodes to those in the
|
||||
// current selection and returns a new Selection object.
|
||||
func (this *Selection) AddNodes(nodes ...*html.Node) *Selection {
|
||||
|
Reference in New Issue
Block a user