Skip to content

Commit

Permalink
docs: typo fix (#62)
Browse files Browse the repository at this point in the history
@m0un10 Thanks for this fix!
  • Loading branch information
m0un10 authored Jan 28, 2024
1 parent 0b32d36 commit d0bb7a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/resources/stripe_coupon.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
* `metadata` - Map(String). Set of key-value pairs attached to an object.

0 comments on commit d0bb7a0

Please sign in to comment.