From 7b4f368307e9b7a1cb1f6d8b2a11141f50bcec4f Mon Sep 17 00:00:00 2001 From: Martin Kristensen Date: Mon, 24 Apr 2017 16:36:34 +0200 Subject: [PATCH] acd: fix typo in log message for temp link download --- amazonclouddrive/amazonclouddrive.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amazonclouddrive/amazonclouddrive.go b/amazonclouddrive/amazonclouddrive.go index 19656e9fa..c28d166aa 100644 --- a/amazonclouddrive/amazonclouddrive.go +++ b/amazonclouddrive/amazonclouddrive.go @@ -983,7 +983,7 @@ func (o *Object) Storable() bool { func (o *Object) Open(options ...fs.OpenOption) (in io.ReadCloser, err error) { bigObject := o.Size() >= int64(tempLinkThreshold) if bigObject { - fs.Debugf(o, "Dowloading large object via tempLink") + fs.Debugf(o, "Downloading large object via tempLink") } file := acd.File{Node: o.info} var resp *http.Response