Skip to content

Commit 4315a02

Browse files
committed
readme change
1 parent 4254adf commit 4315a02

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -196,13 +196,13 @@ where nodes = 'tr.topic-list-item'
196196
Capture the commit information from this page.
197197
```sql
198198
select
199-
case pick '.icon .octicon-file-text'
200-
when null then 'Folder'
201-
else 'File'
202-
end, --folder/file
203-
pick '.content a', --name
204-
pick '.message a', --comment
205-
pick '.age span' --date
199+
case pick '.icon .octicon-file-text'
200+
when null then 'Folder'
201+
else 'File'
202+
end as type, --folder/file
203+
pick '.content a' as name, --name
204+
pick '.message a' as comment, --comment
205+
pick '.age span' as date --date
206206
from download page 'https://github.com/bitsummation/pickaxe'
207207
where nodes = 'table.files tr.js-navigation-item'
208208
```

0 commit comments

Comments
 (0)