Skip to content

Commit

Permalink
docs(/p/demo/json): update json package README.md (#2921)
Browse files Browse the repository at this point in the history
<!-- 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>
  • Loading branch information
MalekLahbib authored Oct 8, 2024
1 parent 2f60580 commit 912a5db
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions examples/gno.land/p/demo/json/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ The converted `Node` type allows you to modify the JSON data or search and extra
package main

import (
"fmt"
"gno.land/p/demo/json"
"gno.land/p/demo/ufmt"
)
Expand All @@ -100,7 +99,6 @@ Encoding (or Marshaling) is the functionality that converts JSON data represente
package main

import (
"fmt"
"gno.land/p/demo/json"
"gno.land/p/demo/ufmt"
)
Expand Down Expand Up @@ -133,7 +131,6 @@ Here is an example of finding data with a specific key. For more examples, pleas
package main

import (
"fmt"
"gno.land/p/demo/json"
"gno.land/p/demo/ufmt"
)
Expand Down

0 comments on commit 912a5db

Please sign in to comment.