From 2fe95e4caa7bd7111d44cb4edbf219737ba8b409 Mon Sep 17 00:00:00 2001
From: 77media-creations <51688338+77media-creations@users.noreply.github.com>
Date: Tue, 20 Jun 2023 06:57:34 +1000
Subject: [PATCH] Fix typo in readme (#108)
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 2a75695..75738e9 100644
--- a/README.md
+++ b/README.md
@@ -54,7 +54,7 @@ Bug reports, feature requests, and pull requests can be submitted by following o
- [Option 3 - `HasSettingsRedis` trait](#update_models_3)
- [Default Settings](#default_settings)
- [Usage](#usage)
- - [Check id the settings for the entity is empty (exist)](#empty)
+ - [Check if the settings for the entity is empty (exist)](#empty)
- [Check settings (exist)](#exist)
- [Get all model's settings](#get_all)
- [Get a specific setting](#get)
@@ -183,7 +183,7 @@ class User extends Model
$user = App\User::first();
```
-#### Check id the settings for the entity is empty
+#### Check if the settings for the entity is empty
```php
$user->settings()->empty();
```