diff options
| author | Tyler <[email protected]> | 2017-10-21 18:17:18 -0700 |
|---|---|---|
| committer | Tyler <[email protected]> | 2017-10-21 18:17:18 -0700 |
| commit | 07929b4c54ea386e5fab198b87b8a05493676c29 (patch) | |
| tree | c17b3e703976a57eefe4119032467522391ee064 /lib | |
| parent | 900c3f1a80e87081d204d00e573c0b465c232932 (diff) | |
| download | faker-07929b4c54ea386e5fab198b87b8a05493676c29.tar.xz faker-07929b4c54ea386e5fab198b87b8a05493676c29.zip | |
add missing colon
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/address.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/address.js b/lib/address.js index 57531e05..5d98554e 100644 --- a/lib/address.js +++ b/lib/address.js @@ -233,12 +233,12 @@ function Address (faker) { * @method faker.address.direction */ this.direction = function () { - return faker.random.arrayElement(faker.definitions.address.direction) + return faker.random.arrayElement(faker.definitions.address.direction); } this.direction.schema = { "description": "Generates a direction.", - "sampleResults": ["NW", "S","SW", "E"] + "sampleResults": ["NW", "S", "SW", "E"] }; /** |
