From 2b3c1b3a889cf8f2c210b71b208b9e14fc8fb6a6 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 10 May 2018 12:06:28 +0200 Subject: [PATCH] Remove mention of default since we already know the default --- src/libstore/s3-binary-cache-store.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstore/s3-binary-cache-store.cc b/src/libstore/s3-binary-cache-store.cc index 96673a5b0..103f141a1 100644 --- a/src/libstore/s3-binary-cache-store.cc +++ b/src/libstore/s3-binary-cache-store.cc @@ -174,7 +174,7 @@ struct S3BinaryCacheStoreImpl : public S3BinaryCacheStore const Setting lsCompression{this, "", "ls-compression", "compression method for .ls files"}; const Setting logCompression{this, "", "log-compression", "compression method for log/* files"}; const Setting bufferSize{ - this, 5 * 1024 * 1024, "buffer-size", "size (in bytes) of each part in multi-part uploads. defaults to 5Mb"}; + this, 5 * 1024 * 1024, "buffer-size", "size (in bytes) of each part in multi-part uploads"}; std::string bucketName;