From df9a4e3f4fa2258640cfdeeb355d7d9771bcec18 Mon Sep 17 00:00:00 2001 From: Pavel Gordon Date: Wed, 23 Sep 2020 10:00:14 +0200 Subject: [PATCH] Fix "Grab all links from a Website" example The provided code wouldn't compile on my machine. I had to add round brackets in order to make it work. Version: implementation("it.skrape:skrapeit-core:1.0.0-alpha6") --- examples/grab-all-links-from-a-website.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/grab-all-links-from-a-website.md b/examples/grab-all-links-from-a-website.md index 9e281d6..ac705e7 100644 --- a/examples/grab-all-links-from-a-website.md +++ b/examples/grab-all-links-from-a-website.md @@ -9,7 +9,7 @@ fun main() { htmlDocument { a { findAll { - eachHrefAsAbsoluteLink + eachHrefAsAbsoluteLink() } } }