diff --git a/PastebincaAPI/PastebincaAPI/Pastebin.cs b/PastebincaAPI/PastebincaAPI/Pastebin.cs
index 1742de5..a7572df 100644
--- a/PastebincaAPI/PastebincaAPI/Pastebin.cs
+++ b/PastebincaAPI/PastebincaAPI/Pastebin.cs
@@ -46,10 +46,10 @@ public Pastebin()
}
///
- /// Send the Paste with all the data you give it
+ /// Send the Paste with all the data you gave
///
/// The body of your Paste
- /// The title of you Paste
+ /// The title of your Paste
/// The Description of your Paste
/// The URL to reach your Paste
public string SendPast(string content, string name, string description, PasteContentType type, Expiration expiration)
@@ -83,7 +83,7 @@ private string GetApiKey()
}
///
- /// The the postData ready and encode it to data
+ /// Set the postData ready and encodes it to data
///
/// The content of your Paste
/// The name of your Paste
@@ -102,7 +102,7 @@ private void SetData(string content, string name, string description, PasteConte
}
///
- /// Setup the HttWebRequest with the data to be submited
+ /// Setup the HttWebRequest with the data to be submitted
///
private void SetRequest()
{
@@ -124,7 +124,7 @@ private void SendForm()
}
///
- /// Get the response after the data was submited
+ /// Get the response after the data was submitted
///
/// The Raw data (e.g: SUCCESS:1234567)
private string GetResponse()
@@ -185,7 +185,7 @@ public enum PasteContentType
}
///
- /// This is the enum containing all the diferents durations for your Paste
+ /// This is the enum containing all the differents durations for your Paste
///
/// used as follow in the code
/// string expiration = Expiration.Never.ToDescriptionString();