From 6c87ad3af1ae5984258f0251ec7825106514d4dd Mon Sep 17 00:00:00 2001 From: Anas Khan Date: Wed, 23 Sep 2020 02:10:38 +0530 Subject: [PATCH] README fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ```