From dcdf9fc9f67e8ae39aa2c3b0359c5eb785b147bb Mon Sep 17 00:00:00 2001 From: Jon Pascoe Date: Fri, 15 Nov 2019 22:49:50 +0000 Subject: [PATCH] Remove duplicate method description --- doc/default/commerce.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/default/commerce.md b/doc/default/commerce.md index 0dd13bb42b..bb58416525 100644 --- a/doc/default/commerce.md +++ b/doc/default/commerce.md @@ -8,7 +8,7 @@ Faker::Commerce.department #=> "Grocery, Health & Beauty" Faker::Commerce.department(max: 5) #=> "Grocery, Books, Health & Beauty" Faker::Commerce.department(max: 2, fixed_amount: true) #=> "Books & Tools" -Faker::Commerce.material #=> "Steel" +Faker::Commerce.material #=> "Plastic" Faker::Commerce.product_name #=> "Practical Granite Shirt" @@ -21,6 +21,4 @@ Faker::Commerce.price(range: 0..10.0, as_string: true) #=> "2.18" # Keyword arguments: digits Faker::Commerce.promotion_code #=> "AmazingDeal829102" Faker::Commerce.promotion_code(digits: 2) #=> "AmazingPrice57" - -Faker::Commerce.material #=> "Plastic" ```