Fix typo.

This commit is contained in:
Timo Reitz 2017-11-02 22:02:53 +01:00
parent fbb114e61f
commit 15e9093eb1
1 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ name := MyTypeValue.String() // name => "MyTypeValue"
```
Sometimes you need to use some other string representation format than CamelCase (i.e. in JSON).
To transform it from CamelCase to snake_case or kebab-case, you can use the `transform` flag.
For example, the command `enumer -type=MyType -json -transform=snake` would generate the following string representation:
@ -93,7 +93,7 @@ For example, the command `enumer -type=MyType -json -transform=snake` would gene
```go
name := MyTypeValue.String() // name => "my_type_value"
```
**Note**: The transformation only works form CamelCase to sanake_case or kebab-case, not the other way around.
**Note**: The transformation only works form CamelCase to snake_case or kebab-case, not the other way around.
## How to use
The usage of Enumer is the same as Stringer, so you can refer to the [Stringer docs](https://godoc.org/golang.org/x/tools/cmd/stringer)