From 0802c3f4fe4e0f9d5cbee9ef5a61a365870f7847 Mon Sep 17 00:00:00 2001 From: Harrison R Date: Sat, 16 Nov 2024 16:18:55 +0000 Subject: [PATCH] fix 'bisic' typo to 'basic' --- docs/guide/define-plans.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guide/define-plans.md b/docs/guide/define-plans.md index 69417bb..5a0ffd5 100644 --- a/docs/guide/define-plans.md +++ b/docs/guide/define-plans.md @@ -65,8 +65,8 @@ The incantation above conjures the following magical JSON representation: "max_teams": 5 }, "planId": { - "monthly": "bisic_price_monthly", - "yearly": "bisic_price_yearly" + "monthly": "basic_price_monthly", + "yearly": "basic_price_yearly" }, "trialDays": 7, "monthlyIncentive": null, @@ -85,7 +85,7 @@ PlanCraft::create('basic', 'Basic', '12', 'Monthly', [ ], [ 'max_chirps' => 2, 'max_teams' => 5, -], 'bisic_price_monthly') +], 'basic_price_monthly') ->description('Basic plan users can create 10 Chirps per team and create 5 Teams.') ->trialDays(7); ``` @@ -112,7 +112,7 @@ PlanCraft::create('basic', 'Basic', '12', 'Monthly', [ "max_teams": 5 }, "planId": { - "monthly": "bisic_price_monthly" + "monthly": "basic_price_monthly" }, "trialDays": 7, "monthlyIncentive": null,