From 68c30ca9ea8b42b398beea79f6ef3bd86af6a2c1 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Tue, 14 Apr 2026 20:33:01 +0000
Subject: [PATCH 1/2] Initial plan
From 168f5f11952f9ab9c0f931d891a2da043d67d8e3 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Tue, 14 Apr 2026 20:34:38 +0000
Subject: [PATCH 2/2] Fix spelling and grammar in Agency.cs XML comments
Agent-Logs-Url: https://github.com/SpeakingInBits/PC2/sessions/21c5fbb4-a586-4c7e-a43a-d884c09590ff
Co-authored-by: JoeProgrammer88 <7156063+JoeProgrammer88@users.noreply.github.com>
---
PC2/Models/Agency.cs | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/PC2/Models/Agency.cs b/PC2/Models/Agency.cs
index 40f894a0..b7d659c6 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; }
}