Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
fix mix-up between snake and kebab example
  • Loading branch information
veggiemonk authored Jan 8, 2024
1 parent 81bfd8b commit 9f44128
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 @@ -64,8 +64,8 @@ import (
func main() {
fmt.Println(sc.Camel("hello world")) // helloWorld
fmt.Println(sc.Pascal("hello world")) // HelloWorld
fmt.Println(sc.Kebab("hello world")) // hello_world
fmt.Println(sc.Snake("hello world")) // hello-world
fmt.Println(sc.Kebab("hello world")) // hello-world
fmt.Println(sc.Snake("hello world")) // hello_world
}
```

Expand Down

0 comments on commit 9f44128

Please sign in to comment.