From 75674cad07e394d770d560385be1d6c9abe8faa9 Mon Sep 17 00:00:00 2001 From: Justin Warmkessel Date: Thu, 19 Dec 2024 12:59:38 -0800 Subject: [PATCH] Update docs --- .../BTButtonOrder.swift | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Sources/BraintreeShopperInsights/BTButtonOrder.swift b/Sources/BraintreeShopperInsights/BTButtonOrder.swift index d51d6047e..0018ecc29 100644 --- a/Sources/BraintreeShopperInsights/BTButtonOrder.swift +++ b/Sources/BraintreeShopperInsights/BTButtonOrder.swift @@ -4,30 +4,30 @@ import Foundation /// - Warning: This module is in beta. It's public API may change or be removed in future releases. public enum BTButtonOrder: String { - /// 0 + /// First place case first = "1" - /// 1 + /// Second place case second = "2" - /// 2 + /// Third place case third = "3" - /// 3 + /// Fourth place case fourth = "4" - /// 4 + /// Fifth place case fifth = "5" - /// 5 + /// Sixth place case sixth = "6" - /// 6 + /// Seventh place case seventh = "7" - /// 7 + /// Eighth place case eighth = "8" - /// 8 + /// Greater than Eighth place case other = "other" }