Skip to content

Commit 95605b8

Browse files
author
Liran Cohen
committed
Fix typos.
1 parent c9c63d3 commit 95605b8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ For the purposes of the documentation, lets use the example of a Survey building
3333

3434
### Adding custom fields
3535

36-
To add basic custom field support, simply add the `HasCusomFields` trait at the top of your model:
36+
To add basic custom field support, simply add the `HasCustomFields` trait at the top of your model:
3737

3838
```php
3939
use Illuminate\Database\Eloquent\Model;
40-
use Givebutter\LaravelCustomFields\Traits\HasCusomFields;
40+
use Givebutter\LaravelCustomFields\Traits\HasCustomFields;
4141

4242
class Survey extends Model
4343
{
@@ -49,11 +49,11 @@ class Survey extends Model
4949

5050
### Adding custom field responses
5151

52-
Next, we add support to store custom field responses. We'll simply pull in the `HasCusomFieldResponses` trait at the top of our `SurveyResponse` model.
52+
Next, we add support to store custom field responses. We'll simply pull in the `HasCustomFieldResponses` trait at the top of our `SurveyResponse` model.
5353

5454
```php
5555
use Illuminate\Database\Eloquent\Model;
56-
use Givebutter\LaravelCustomFields\Traits\HasCusomFieldResponses;
56+
use Givebutter\LaravelCustomFields\Traits\HasCustomFieldResponses;
5757

5858
class SurveyResponse extends Model
5959
{

0 commit comments

Comments
 (0)