Skip to content

Commit 912a5db

Browse files
authored
docs(/p/demo/json): update json package README.md (#2921)
<!-- please provide a detailed description of the changes made in this pull request. --> in the three examples provided in the README.md file, there's a useless import of "fmt" package. <details><summary>Contributors' checklist...</summary> - [ ] Added new tests, or not needed, or not feasible - [ ] Provided an example (e.g. screenshot) to aid review or the PR is self-explanatory - [ ] Updated the official documentation or not needed - [ ] No breaking changes were made, or a `BREAKING CHANGE: xxx` message was included in the description - [ ] Added references to related issues and PRs - [ ] Provided any useful hints for running manual tests - [ ] Added new benchmarks to [generated graphs](https://gnoland.github.io/benchmarks), if any. More info [here](https://github.com/gnolang/gno/blob/master/.benchmarks/README.md). </details>
1 parent 2f60580 commit 912a5db

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

examples/gno.land/p/demo/json/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ The converted `Node` type allows you to modify the JSON data or search and extra
7575
package main
7676

7777
import (
78-
"fmt"
7978
"gno.land/p/demo/json"
8079
"gno.land/p/demo/ufmt"
8180
)
@@ -100,7 +99,6 @@ Encoding (or Marshaling) is the functionality that converts JSON data represente
10099
package main
101100

102101
import (
103-
"fmt"
104102
"gno.land/p/demo/json"
105103
"gno.land/p/demo/ufmt"
106104
)
@@ -133,7 +131,6 @@ Here is an example of finding data with a specific key. For more examples, pleas
133131
package main
134132

135133
import (
136-
"fmt"
137134
"gno.land/p/demo/json"
138135
"gno.land/p/demo/ufmt"
139136
)

0 commit comments

Comments
 (0)