diff --git a/README.md b/README.md index e1e96b2..376346d 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ const xml = ` `; const tags = findTagsByName(xml, "MDI"); -// will output an array of tags +// tags is an array of tags ``` ## find one tag by path ```javascript @@ -88,7 +88,7 @@ To get an array of tags that follow a path: ```javascript const findTagsByPath = require("xml-utils/find-tags-by-path"); const tags = findTagByPath(xml, ["Metadata", "MDI"]); -// will output an array of tags +// tags is an array of tags ```