aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTyler <[email protected]>2017-10-21 18:17:18 -0700
committerTyler <[email protected]>2017-10-21 18:17:18 -0700
commit07929b4c54ea386e5fab198b87b8a05493676c29 (patch)
treec17b3e703976a57eefe4119032467522391ee064 /lib
parent900c3f1a80e87081d204d00e573c0b465c232932 (diff)
downloadfaker-07929b4c54ea386e5fab198b87b8a05493676c29.tar.xz
faker-07929b4c54ea386e5fab198b87b8a05493676c29.zip
add missing colon
Diffstat (limited to 'lib')
-rw-r--r--lib/address.js4
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"]
};
/**