From 311d67801df88283a2450ea23ccd5850467138b8 Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Wed, 3 Aug 2016 17:31:03 -0600 Subject: [PATCH] gofmt -s and minor readme improvement --- README.md | 4 ++-- s3_test.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7209cdd..210f68d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ **It features an elegant, minimalistic CLI and an idiomatic Go library. They are completely interoperable and their configuration is beautifully symmetric.** -This is a new tool. Please use liberally with discretion and report any bugzies! +This tool is a WIP. Please use liberally with discretion and report any bugzies! ## Intro @@ -61,7 +61,7 @@ You can configure Checkup entirely with a simple JSON document. We recommend you } ``` -For the complete structure you may configure, please see [the godoc](https://godoc.org/github.com/sourcegraph/checkup). +**For the complete structure definition, please see [the godoc](https://godoc.org/github.com/sourcegraph/checkup).** There are many elements of checkers and storage you may wish to customize! Save this file as `config.json` in your working directory. diff --git a/s3_test.go b/s3_test.go index d12c6f3..b121873 100644 --- a/s3_test.go +++ b/s3_test.go @@ -119,7 +119,7 @@ func (s *s3Mock) PutObject(input *s3.PutObjectInput) (*s3.PutObjectOutput, error func (s *s3Mock) ListObjects(input *s3.ListObjectsInput) (*s3.ListObjectsOutput, error) { return &s3.ListObjectsOutput{ Contents: []*s3.Object{ - &s3.Object{ + { Key: aws.String("foobar"), LastModified: new(time.Time), },