From d0bb7a0c98fecd4c2e54195a04536a2482801ae6 Mon Sep 17 00:00:00 2001 From: Craig Barr Date: Mon, 29 Jan 2024 08:46:29 +1000 Subject: [PATCH] docs: typo fix (#62) @m0un10 Thanks for this fix! --- docs/resources/stripe_coupon.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/resources/stripe_coupon.md b/docs/resources/stripe_coupon.md index eb7a8c20..d83807a1 100644 --- a/docs/resources/stripe_coupon.md +++ b/docs/resources/stripe_coupon.md @@ -28,9 +28,9 @@ resource "stripe_coupon" "coupon" { // coupon for the percentage off discount resource "stripe_coupon" "coupon" { - name = "33.3% discount" - percentage_off = 33.3 - duration = "forever" + name = "33.3% discount" + percent_off = 33.3 + duration = "forever" } // coupon with limitation to a date and the product only @@ -75,4 +75,4 @@ Attributes exported by this resource include: * `times_redeemed` - Int. Number of times this coupon has been applied to a customer. * `applies_to` - List(String). A list of product IDs this coupon applies to. * `valid` - Bool. Taking account of the above properties, whether this coupon can still be applied to a customer. -* `metadata` - Map(String). Set of key-value pairs attached to an object. \ No newline at end of file +* `metadata` - Map(String). Set of key-value pairs attached to an object.