Skip to content

Commit

Permalink
fix reference of golang.org/x/example/stringutil
Browse files Browse the repository at this point in the history
It was renamed in golang/go#61722
  • Loading branch information
bartekpacia committed Nov 3, 2024
1 parent 8e5bfab commit bd31107
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ import (
"fmt"
"os"

"golang.org/x/example/stringutil"
"golang.org/x/example/hello/reverse"
)

func main() {
fmt.Printf("---> %v\n", os.Args[0])
fmt.Println("we could make an entire album out of this one sound")
fmt.Println(stringutil.Reverse("[SQUEAK INTENSIFIES]"))
fmt.Println(reverse.String("[SQUEAK INTENSIFIES]"))
}
```

Expand Down

0 comments on commit bd31107

Please sign in to comment.