Skip to content

Commit

Permalink
Fix fmt.Pritnln to fmt.Println in the example code
Browse files Browse the repository at this point in the history
  • Loading branch information
mingrammer committed Dec 7, 2018
1 parent c2bbe39 commit 67df4b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ import (


func main() {
fmt.Pritnln(casec.IsSnakeCase("this_is_snake"))
fmt.Println(casec.IsSnakeCase("this_is_snake"))
// Output: true
fmt.Println(casec.IsCamelCase("thisIsNot_camelCase"))
// Output: false
Expand Down

0 comments on commit 67df4b5

Please sign in to comment.