Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
RadhiFadlillah committed Aug 30, 2019
1 parent 531c66c commit a5b4f78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/cmd/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func updateHandler(cmd *cobra.Command, args []string) {
// Check if user really want to batch update archive
if nBook := len(bookmarks); nBook > 5 && !offline && !noArchival && !skipConfirm {
fmt.Printf("This update will generate offline archive for %d bookmark(s).\n", nBook)
fmt.Println("This might take a long time and uses lot of your network bandwith.")
fmt.Println("This might take a long time and uses lot of your network bandwidth.")

confirmUpdate := ""
fmt.Printf("Continue update and archival process ? (y/N): ")
Expand Down
2 changes: 1 addition & 1 deletion pkg/warc/internal/archiver/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ func processJS(input io.Reader, baseURL *nurl.URL) (string, []ResourceURL) {

// Process the string.
// Unlike CSS, JS doesn't have it's own URL token. So, we can only guess whether
// a string is URL or not. There are several criterias to decide if it's URL :
// a string is URL or not. There are several criteria to decide if it's URL :
// - It surrounded by `url()` just like CSS
// - It started with http(s):// for absolute URL
// - It started with slash (/) for relative URL
Expand Down

0 comments on commit a5b4f78

Please sign in to comment.