aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarak <[email protected]>2015-07-10 12:34:53 -0700
committerMarak <[email protected]>2015-07-10 12:34:53 -0700
commita0465fcd7678812cfe697c3dd045085d94e52cfa (patch)
treee707b80cfcc10cfebda40890780395639c9ba681
parent6771c540aad4a43f612ff3ece53ea12f6f15dd37 (diff)
downloadfaker-a0465fcd7678812cfe697c3dd045085d94e52cfa.tar.xz
faker-a0465fcd7678812cfe697c3dd045085d94e52cfa.zip
[docs] [fix] Documentation generator is removing example mustache syntax
-rw-r--r--Readme.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Readme.md b/Readme.md
index 1e143a8c..36999aa6 100644
--- a/Readme.md
+++ b/Readme.md
@@ -38,7 +38,7 @@ As of version `v3.0.0` faker.js contains a super useful generator method `Faker.
**Example:**
``` js
-console.log(faker.fake(', '));
+console.log(faker.fake('{{name.lastName}}, {{name.firstName}} {{name.suffix}}'));
// outputs: "Marks, Dean Sr."
```