From 0761308f03f1dd991a4215429c35e26c649001e1 Mon Sep 17 00:00:00 2001 From: Kebert Xela Date: Tue, 21 May 2019 09:01:26 -0700 Subject: [PATCH] Adjust exported function comment formatting --- upload.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upload.go b/upload.go index 6533bfe..fde4942 100644 --- a/upload.go +++ b/upload.go @@ -32,7 +32,7 @@ var fileBlacklist = map[string]bool{ "crossdomain.xml": true, } -// Describes metadata directly from the user request +// UploadRequest .. Describes metadata directly from the user request type UploadRequest struct { src io.Reader size int64 @@ -42,7 +42,7 @@ type UploadRequest struct { randomBarename bool } -// Metadata associated with a file as it would actually be stored +// Upload .. Metadata associated with a file as it would actually be stored type Upload struct { Filename string // Final filename on disk Metadata backends.Metadata