summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Collins <[email protected]>2013-01-10 15:43:40 -0600
committerDave Collins <[email protected]>2013-01-10 15:43:40 -0600
commit04998fcda361bb6a087d58560bfa03ec3038529f (patch)
tree90a4db680c7cc358e65b6e5df78f27aa0d605d75
parentf83c4528997c18af3afbbe70309155707f556fee (diff)
Fix a couple of comment typos.
-rw-r--r--spew/doc.go2
-rw-r--r--spew/format.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/spew/doc.go b/spew/doc.go
index 06278f3..61c0091 100644
--- a/spew/doc.go
+++ b/spew/doc.go
@@ -105,7 +105,7 @@ shown here.
Custom Formatter
Spew provides a custom formatter the implements the fmt.Formatter interface
-so that integrates cleanly with standard fmt package printing functions. The
+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.
diff --git a/spew/format.go b/spew/format.go
index cc27180..f97e454 100644
--- a/spew/format.go
+++ b/spew/format.go
@@ -328,7 +328,7 @@ precision arguments (however they will still work on the format specifiers not
handled by the custom formatter).
Typically this function shouldn't be called directly. It is much easier to make
-use of the custom formatter is to call one of the convenience functions such as
+use of the custom formatter by calling one of the convenience functions such as
Printf, Println, or Printf.
*/
func NewFormatter(v interface{}) (f fmt.Formatter) {