diff options
| author | Nick White <git@njw.name> | 2024-11-06 07:27:05 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-06 07:27:05 +0000 |
| commit | 711f80eec5d970b377a1c1e15f6914bbd152a11a (patch) | |
| tree | 61298e86ad5f04556b840fd235007450342b1d63 /internal/pipeline | |
| parent | f41e3fa9bcb3090922cdd8aeef07df4c1a905054 (diff) | |
| parent | d0af550bb7c72b6b2ac7169f8c1d948cf1536c3c (diff) | |
Merge pull request #6 from UB-Mannheim/master
Fix some typos and grammar in documentation and error message
Diffstat (limited to 'internal/pipeline')
| -rw-r--r-- | internal/pipeline/pipeline.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/pipeline/pipeline.go b/internal/pipeline/pipeline.go index d8beeb9..ae35ec8 100644 --- a/internal/pipeline/pipeline.go +++ b/internal/pipeline/pipeline.go @@ -356,7 +356,7 @@ func Analyse(conn Downloader, mkfullpdf bool) func(context.Context, chan string, if err != nil { for range toanalyse { } // consume the rest of the receiving channel so it isn't blocked - errc <- fmt.Errorf("Error retreiving confidence for %s: %s", path, err) + errc <- fmt.Errorf("Error retrieving confidence for %s: %s", path, err) return } base := filepath.Base(path) |
