Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit b81e1b6

Browse files
committed
new line
- output formatting
1 parent ac67b52 commit b81e1b6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ func main() {
162162
primaryMap = utils.CombineMaps(primaryMap, readFilesMap, readURLsMap)
163163
}
164164

165-
fmt.Fprintf(os.Stderr, "[*] All content done loading.")
165+
fmt.Fprintf(os.Stderr, "[*] All content loaded.\n")
166166

167167
// Apply transformation if provided
168168
if *transformation != "" && templateFiles == nil {

pkg/utils/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import (
4343
func ReadFilesToMap(fs models.FileSystem, filenames []string) map[string]int {
4444
wordMap := make(map[string]int)
4545
// 4 GB read buffer
46-
fmt.Fprintf(os.Stderr, "[*] Creating file buffer...\n")
46+
fmt.Fprintf(os.Stderr, "[*] Creating file buffer and reading...\n")
4747
chunkSize := int64(4 * 1024 * 1024 * 1024)
4848

4949
i := 0

0 commit comments

Comments
 (0)