diff options
| author | Dave Collins <[email protected]> | 2013-01-13 00:17:58 -0600 |
|---|---|---|
| committer | Dave Collins <[email protected]> | 2013-01-13 00:17:58 -0600 |
| commit | 638b62b9f5f2cc0f2f601fb5b957715056c5e335 (patch) | |
| tree | 94a9a15e7a96e93909bcb720819b4eb82414e3f6 /spew/spew.go | |
| parent | e892c84d386b41f1a63a4ec7b4b35bc69b093ac4 (diff) | |
Fix a few comment typos and improve consistency.
Diffstat (limited to 'spew/spew.go')
| -rw-r--r-- | spew/spew.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spew/spew.go b/spew/spew.go index 46fd904..d106f95 100644 --- a/spew/spew.go +++ b/spew/spew.go @@ -259,16 +259,16 @@ package: * Pointers are dereferenced and followed * Circular data structures are detected and handled properly - * Custom error/Stringer interfaces are optionally invoked, including + * Custom Stringer/error interfaces are optionally invoked, including on unexported types - * Custom types which only implement the error/Stringer interfaces via + * Custom types which only implement the Stringer/error interfaces via a pointer receiver are optionally invoked when passing non-pointer variables The configuration options are controlled by accessing the ConfigState associated with s via the Config method. See ConfigState for options documentation. -See Fdump if you would prefer dump to an arbitrary io.Writer. +See Fdump if you would prefer dumping to an arbitrary io.Writer. */ func (s *SpewState) Dump(a ...interface{}) { // The Config method creates the config state if needed, so call it instead |
