Skip to content

Commit f04d0dd

Browse files
committed
docs: fix #28
1 parent 2b1eec8 commit f04d0dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ list := range htmlquery.Find(doc, "//a[@href]")
6767

6868
```go
6969
list := range htmlquery.Find(doc, "//a/@href")
70-
for n := range list{
70+
for _ , n := range list{
7171
fmt.Println(htmlquery.InnerText(n)) // output @href value without A element.
7272
}
7373
```

0 commit comments

Comments
 (0)