We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31d8d09 commit 5deac91Copy full SHA for 5deac91
_examples/csv/README.md
@@ -24,6 +24,8 @@ func main() {
24
### Unmarshal
25
26
```go
27
+package main
28
+
29
import (
30
"fmt"
31
"log"
@@ -44,13 +46,15 @@ func main() {
44
46
log.Fatal(err)
45
47
}
48
- fmt.Println("%v", data)
49
+ fmt.Println(data)
50
51
```
52
53
### Marshal
54
55
56
57
58
59
60
@@ -82,13 +86,15 @@ func main() {
82
86
83
87
84
88
85
- fmt.Println("%v", csv)
89
+ fmt.Println(csv)
90
91
92
93
### Convert to CSV
94
95
96
97
98
99
100
@@ -100,6 +106,6 @@ func main() {
106
{"a", "b", "c"},
101
107
102
108
103
- fmt.Println("%v", csv.ToCsv(data))
109
+ fmt.Println(csv.ToCsv(data))
104
110
105
111
0 commit comments