From ea073f58cf924bcdbfd67039cedd6703491f9c02 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 4 Sep 2016 13:08:05 +0200 Subject: [PATCH] Correct comment --- src/restic/backend/doc.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/restic/backend/doc.go b/src/restic/backend/doc.go index f82c3d671..daab2e2f8 100644 --- a/src/restic/backend/doc.go +++ b/src/restic/backend/doc.go @@ -1,5 +1,4 @@ // Package backend provides local and remote storage for restic repositories. -// All backends need to implement the Backend interface. There is a -// MockBackend, which can be used for mocking in tests, and a MemBackend, which -// stores all data in a hash internally. +// All backends need to implement the Backend interface. There is a MemBackend, +// which stores all data in a map internally and can be used for testing. package backend