Skip to content

Commit

Permalink
Merge pull request #16 from harrisonratcliffe/patch-1
Browse files Browse the repository at this point in the history
fix 'bisic' typo to 'basic'
  • Loading branch information
realrashid authored Nov 16, 2024
2 parents 638b8ce + 0802c3f commit bb97e1d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/guide/define-plans.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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);
```
Expand All @@ -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,
Expand Down

0 comments on commit bb97e1d

Please sign in to comment.