From 13701bd2672712732a643f70f5499fec64f4585b Mon Sep 17 00:00:00 2001
From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com>
Date: Thu, 11 Mar 2021 22:52:58 +0100
Subject: [PATCH] Update README.md
---
README.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index a634fa1..377d9a2 100644
--- a/README.md
+++ b/README.md
@@ -133,7 +133,7 @@ Currently, only guild members with administrator rights can use this bot.
### Stone_Red_Utilities.StringExtentions
#### Methods:
* EqualsIgnoreCase
- * Description: Determines whether this instance and another specified object have the same value regardless of upper and lower case.
+ * Description: Determines whether this instance and another specified string object have the same value regardless of upper and lower case.
* Parameters: `this string str`, `string value`
* Example usage:
```cs
@@ -149,7 +149,7 @@ Currently, only guild members with administrator rights can use this bot.
True
```
* EqualsIgnoreSpaces
- * Description: Determines whether this instance and another specified object have the same value regardless of spaces.
+ * Description: Determines whether this instance and another specified string object have the same value regardless of spaces.
* Parameters: `this string str`, `string value`
* Example usage:
```cs
@@ -165,7 +165,7 @@ Currently, only guild members with administrator rights can use this bot.
True
```
* EqualsIgnoreSpacesAndCase
- * Description: Determines whether this instance and another specified object have the same value regardless of upper and lower case and spaces.
+ * Description: Determines whether this instance and another specified string object have the same value regardless of upper and lower case and spaces.
* Parameters: `this string str`, `string value`
* Example usage:
```cs