diff options
| author | Dave Collins <[email protected]> | 2013-02-02 01:14:34 -0600 |
|---|---|---|
| committer | Dave Collins <[email protected]> | 2013-02-02 01:14:34 -0600 |
| commit | 333c720067940a533df7f3441ddde689ad0529fe (patch) | |
| tree | 96a4b833f016929337aa2680d4d9df3488df697d | |
| parent | 5cb4f8419452a2bcc698abaf006aebc9af3ada7b (diff) | |
Update overview doc for correct verb/flag combos.
| -rw-r--r-- | spew/doc.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spew/doc.go b/spew/doc.go index 7d00bbd..b899269 100644 --- a/spew/doc.go +++ b/spew/doc.go @@ -35,10 +35,10 @@ There are two different approaches spew allows for dumping Go data structures: and additional debug information such as types and all pointer addresses used to indirect to the final value * A custom Formatter interface that integrates cleanly with the standard fmt - package and replaces %v and %+v to provide inline printing similar - to the default %v while providing the additional functionality outlined - above and passing unsupported format verb/flag combinations such a %x, - %q, and %#v along to fmt + package and replaces %v, %+v, %#v, and %#+v to provide inline printing + similar to the default %v while providing the additional functionality + outlined above and passing unsupported format verbs such as %x and %q + along to fmt Quick Start |
