Skip to content

Commit

Permalink
fix: Missing nextline character
Browse files Browse the repository at this point in the history
  • Loading branch information
caffeine-addictt committed Apr 15, 2024
1 parent 63427be commit 159a249
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ var getCommand = &cobra.Command{
case utils.StrategyConcurrent:
// Concurrency with no limit
if getFlags.maxConcurrency == 0 {
fmt.Printf("Downloading concurrently... [Use: %d, Max: No limit]", len(argSet))
fmt.Printf("Downloading concurrently... [Use: %d, Max: No limit]\n", len(argSet))
waitGroup.Add(len(argSet))

for url := range argSet {
Expand Down

0 comments on commit 159a249

Please sign in to comment.