doc fixes

This commit is contained in:
Martin Angers
2012-08-31 10:47:28 -04:00
parent f1e54e5311
commit a139b5d77f
5 changed files with 103 additions and 41 deletions

View File

@@ -61,8 +61,8 @@ func (this *Selection) NotSelection(s *Selection) *Selection {
return pushStack(this, winnowNodes(this, s.Nodes, false))
}
// Union() is an alias for FilterSelection().
func (this *Selection) Union(s *Selection) *Selection {
// Intersection() is an alias for FilterSelection().
func (this *Selection) Intersection(s *Selection) *Selection {
return this.FilterSelection(s)
}