Skip to content

Commit

Permalink
Merge pull request #32 from lucapette/fix/generatorDescription
Browse files Browse the repository at this point in the history
Fix spelling mistake in int description
  • Loading branch information
lucapette authored May 23, 2017
2 parents f3382c9 + 04a7b3d commit 2f24cb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integration/generators.golden
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ email email
enum a random value from an enum. Defaults to "foo..bar..baz"
event.action clicked|purchased|viewed|watched
http.method DELETE|GET|HEAD|OPTION|PATCH|POST|PUT
int positive integer. Accepts range mix..max (default: 1..1000).
int positive integer. Accepts range min..max (default: 1..1000).
ipv4 ipv4
ipv6 ipv6
latitude latitude
Expand Down
2 changes: 1 addition & 1 deletion pkg/fakedata/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ func init() {

generators["int"] = Generator{
Name: "int",
Desc: "positive integer. Accepts range mix..max (default: 1..1000).",
Desc: "positive integer. Accepts range min..max (default: 1..1000).",
Func: integer,
}

Expand Down

0 comments on commit 2f24cb7

Please sign in to comment.