From 8c1125fe13c34ecb5c41225cee0a9d8932cb2140 Mon Sep 17 00:00:00 2001 From: "Leo R. Lundgren" Date: Fri, 27 Oct 2023 18:56:00 +0200 Subject: [PATCH] doc: Correct two typos --- CHANGELOG.md | 2 +- changelog/0.14.0_2022-08-25/pull-3475 | 4 ++-- internal/repository/repository.go | 2 +- internal/restic/repository.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b92853c1..5ff46a72f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1492,7 +1492,7 @@ Details Restic did not support limiting the IO concurrency / number of connections for accessing repositories stored using the local or SFTP backends. The number of connections is now limited - as for other backends, and can be configured via the the `-o local.connections=2` and `-o + as for other backends, and can be configured via the `-o local.connections=2` and `-o sftp.connections=5` options. This ensures that restic does not overwhelm the backend with concurrent IO operations. diff --git a/changelog/0.14.0_2022-08-25/pull-3475 b/changelog/0.14.0_2022-08-25/pull-3475 index 9932ae632..e79432faf 100644 --- a/changelog/0.14.0_2022-08-25/pull-3475 +++ b/changelog/0.14.0_2022-08-25/pull-3475 @@ -3,7 +3,7 @@ Enhancement: Allow limiting IO concurrency for local and SFTP backend Restic did not support limiting the IO concurrency / number of connections for accessing repositories stored using the local or SFTP backends. The number of connections is now limited as for other backends, and can be configured via the -the `-o local.connections=2` and `-o sftp.connections=5` options. This ensures -that restic does not overwhelm the backend with concurrent IO operations. +`-o local.connections=2` and `-o sftp.connections=5` options. This ensures that +restic does not overwhelm the backend with concurrent IO operations. https://github.com/restic/restic/pull/3475 diff --git a/internal/repository/repository.go b/internal/repository/repository.go index 8ec3c598e..d034911c5 100644 --- a/internal/repository/repository.go +++ b/internal/repository/repository.go @@ -829,7 +829,7 @@ func (r *Repository) List(ctx context.Context, t restic.FileType, fn func(restic } // ListPack returns the list of blobs saved in the pack id and the length of -// the the pack header. +// the pack header. func (r *Repository) ListPack(ctx context.Context, id restic.ID, size int64) ([]restic.Blob, uint32, error) { h := restic.Handle{Type: restic.PackFile, Name: id.String()} diff --git a/internal/restic/repository.go b/internal/restic/repository.go index a651f9906..60e57f38a 100644 --- a/internal/restic/repository.go +++ b/internal/restic/repository.go @@ -39,7 +39,7 @@ type Repository interface { List(ctx context.Context, t FileType, fn func(ID, int64) error) error // ListPack returns the list of blobs saved in the pack id and the length of - // the the pack header. + // the pack header. ListPack(context.Context, ID, int64) ([]Blob, uint32, error) LoadBlob(context.Context, BlobType, ID, []byte) ([]byte, error)