From f6d6f215628bcd72096efff65bb8da7e7f5cc8b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Thu, 15 Aug 2019 17:12:26 +0200 Subject: [PATCH] fix two recent example names This makes vet happy, and will make the examples actually show up on godoc.org. --- example_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example_test.go b/example_test.go index c031b09b..5d34b96e 100644 --- a/example_test.go +++ b/example_test.go @@ -311,7 +311,7 @@ func ExamplePrintToPDF() { } } -func ExampleByJSPath_OuterHTML() { +func ExampleByJSPath() { ctx, cancel := chromedp.NewContext(context.Background()) defer cancel() @@ -346,7 +346,7 @@ func ExampleByJSPath_OuterHTML() { // } -func Example_DocumentDump() { +func Example_documentDump() { ctx, cancel := chromedp.NewContext(context.Background()) defer cancel()