浏览代码

Update overview doc for correct verb/flag combos.

Dave Collins 13 年之前
父节点
当前提交
333c720067
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      spew/doc.go

+ 4 - 4
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
 	  and additional debug information such as types and all pointer addresses
 	  used to indirect to the final value
 	  used to indirect to the final value
 	* A custom Formatter interface that integrates cleanly with the standard fmt
 	* 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
 Quick Start