diff --git a/README.md b/README.md index 48c4945..19817d7 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ func FindPrevSibling() Root {} // Pointer to the previous sibling of the Element func FindPrevElementSibling() Root {} // Pointer to the previous element sibling of the Element in the DOM returned func Children() []Root {} // Find all direct children of this DOM element func Attrs() map[string]string {} // Map returned with all the attributes of the Element as lookup to their respective values -func Text() string {} // Full text inside a non-nested tag returned, first half returned in a non-nested one +func Text() string {} // Full text inside a non-nested tag returned, first half returned in a nested one func FullText() string {} // Full text inside a nested/non-nested tag returned func SetDebug(bool) {} // Sets the debug mode to true or false; false by default ```