Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ruebot committed Jun 28, 2023
1 parent 422cc51 commit 2a954a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/toolkit-walkthrough.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ import io.archivesunleashed.udfs._
RecordLoader.loadArchives("/aut-resources/Sample-Data/*.gz", sc)
.all()
.keepValidPagesDF()
.groupBy($"domain"))
.groupBy($"domain")
.count()
.sort($"count".desc)
.show(10, false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ import io.archivesunleashed.udfs._
RecordLoader.loadArchives("/aut-resources/Sample-Data/*.gz", sc)
.all()
.keepValidPagesDF()
.groupBy($"domain"))
.groupBy($"domain")
.count()
.sort($"count".desc)
.show(10, false)
Expand Down

0 comments on commit 2a954a7

Please sign in to comment.