diff --git a/PC2/Models/Agency.cs b/PC2/Models/Agency.cs
index 40f894a..b7d659c 100644
--- a/PC2/Models/Agency.cs
+++ b/PC2/Models/Agency.cs
@@ -4,7 +4,7 @@
namespace PC2.Models
{
///
- /// Represents a agency as a object
+ /// Represents an agency as an object
///
public class Agency
{
@@ -41,12 +41,12 @@ public class Agency
public string? Address2 { get; set;}
///
- /// The city the agency's is located
+ /// The city where the agency is located
///
public string? City { get; set;}
///
- /// The state the agency is located
+ /// The state where the agency is located
///
public string? State { get; set;}
@@ -76,7 +76,7 @@ public class Agency
public string? TTY { get; set;}
///
- /// The agency's telecommunications device for the deaf's number
+ /// The agency's Telecommunications Device for the Deaf (TDD) number
///
public string? TDD { get; set;}
@@ -107,9 +107,9 @@ public class Agency
public List AgencyCategories { get; set; } = new List();
///
- /// Creates a formated string to print from the Phone field
+ /// Creates a formatted string to print from the Phone field
///
- /// A formated phone number string to be displayed
+ /// A formatted phone number string to be displayed
public string PhoneToString()
{
Regex regex = new Regex(@"^\(?\d{3}\)?[\s.-]\d{3}[\s.-]\d{4}[\s]?$");
@@ -123,9 +123,9 @@ public string PhoneToString()
}
}
///
- /// Creates a formated string to print from the CrisisHelpHotline field
+ /// Creates a formatted string to print from the CrisisHelpHotline field
///
- /// A formated CrisisHelpHotline phone number to be displayed
+ /// A formatted CrisisHelpHotline phone number to be displayed
public string CrisisToString()
{
Regex regex = new Regex(@"^\(?\d{3}\)?[\s.-]\d{3}[\s.-]\d{4}$");
@@ -155,12 +155,12 @@ public class AgencyDisplayViewModel
public string AgencyName { get; set; } = null!;
///
- /// The agency's contact information
+ /// The agency's second name
///
public string? AgencyName2 { get; set; }
///
- /// The city the agency's is located
+ /// The city where the agency is located
///
public string? City { get; set; }
}