From 110c37a4d1ce1f25ae42a5626dce2dd6fd4da243 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 27 Mar 2014 04:46:01 -0500 Subject: [PATCH] Update TravisCI to use Go 1.2. Also fix a comment typo in doc.go under the custom formatter section. --- .travis.yml | 2 +- spew/doc.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2379c61..fb9efcb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,2 +1,2 @@ language: go -go: 1.1 +go: 1.2 diff --git a/spew/doc.go b/spew/doc.go index 2a0fb60..5a3e2ec 100644 --- a/spew/doc.go +++ b/spew/doc.go @@ -143,7 +143,7 @@ command as shown. Custom Formatter -Spew provides a custom formatter the implements the fmt.Formatter interface +Spew provides a custom formatter that implements the fmt.Formatter interface so that it integrates cleanly with standard fmt package printing functions. The formatter is useful for inline printing of smaller data types similar to the standard %v format specifier.