aboutsummaryrefslogtreecommitdiff
path: root/src/modules/commerce
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/commerce')
-rw-r--r--src/modules/commerce/index.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/commerce/index.ts b/src/modules/commerce/index.ts
index 61dd9a9c..70482d80 100644
--- a/src/modules/commerce/index.ts
+++ b/src/modules/commerce/index.ts
@@ -129,11 +129,11 @@ export class CommerceModule extends ModuleBase {
* @param options.symbol The currency value to use. Defaults to `''`.
*
* @example
- * faker.commerce.price() // 828.07
- * faker.commerce.price({ min: 100 }) // 904.19
- * faker.commerce.price({ min: 100, max: 200 }) // 154.55
- * faker.commerce.price({ min: 100, max: 200, dec: 0 }) // 133
- * faker.commerce.price({ min: 100, max: 200, dec: 0, symbol: '$' }) // $114
+ * faker.commerce.price() // '828.07'
+ * faker.commerce.price({ min: 100 }) // '904.19'
+ * faker.commerce.price({ min: 100, max: 200 }) // '154.55'
+ * faker.commerce.price({ min: 100, max: 200, dec: 0 }) // '133'
+ * faker.commerce.price({ min: 100, max: 200, dec: 0, symbol: '$' }) // '$114'
*
* @since 3.0.0
*/