From 52b6cfbbfa0c0e4a260dfe3d72df1625b471cba9 Mon Sep 17 00:00:00 2001 From: Emil Hessman Date: Sun, 28 Jun 2015 09:44:06 +0200 Subject: [PATCH] backend: fix doc typos --- backend/local/local.go | 2 +- backend/s3/s3.go | 2 +- backend/sftp/sftp.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/local/local.go b/backend/local/local.go index c4ad266dc..cc95bb5b4 100644 --- a/backend/local/local.go +++ b/backend/local/local.go @@ -240,7 +240,7 @@ func (b *Local) Remove(t backend.Type, name string) error { } // List returns a channel that yields all names of blobs of type t. A -// goroutine ist started for this. If the channel done is closed, sending +// goroutine is started for this. If the channel done is closed, sending // stops. func (b *Local) List(t backend.Type, done <-chan struct{}) <-chan string { // TODO: use os.Open() and d.Readdirnames() instead of Glob() diff --git a/backend/s3/s3.go b/backend/s3/s3.go index 4b72d8ca5..b16a5283d 100644 --- a/backend/s3/s3.go +++ b/backend/s3/s3.go @@ -41,7 +41,7 @@ func OpenS3Bucket(bucket *s3.Bucket, bucketname string) *S3Backend { return &S3Backend{bucket: bucket, path: bucketname, connChan: connChan} } -// Open opens the s3 backend at bucket and region. +// Open opens the S3 backend at bucket and region. func Open(regionname, bucketname string) (backend.Backend, error) { auth, err := aws.EnvAuth() if err != nil { diff --git a/backend/sftp/sftp.go b/backend/sftp/sftp.go index 2e67fbaec..4361eed69 100644 --- a/backend/sftp/sftp.go +++ b/backend/sftp/sftp.go @@ -372,7 +372,7 @@ func (r *SFTP) Remove(t backend.Type, name string) error { } // List returns a channel that yields all names of blobs of type t. A -// goroutine ist started for this. If the channel done is closed, sending +// goroutine is started for this. If the channel done is closed, sending // stops. func (r *SFTP) List(t backend.Type, done <-chan struct{}) <-chan string { ch := make(chan string)