From c2a04fb1edee4913c0a7d9f1698d41e6e85b7521 Mon Sep 17 00:00:00 2001 From: Jacob Renner <92055318+jlr786@users.noreply.github.com> Date: Thu, 29 May 2025 14:51:14 -0400 Subject: [PATCH] Fixing typo in Line 62 of src/app.py Steps to Reproduce: - Navigate to https://github.com/skills/getting-started-with-github-copilot/blob/84fdf7e3fd6dd28f875decddc7459d7286e737d8/src/app.py#L62 - Locate the phrase ["# Get the specificy activity"]. - The intended correction is ["# Get the specific activity"]. --- src/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.py b/src/app.py index fd0c462..4ebb1d9 100644 --- a/src/app.py +++ b/src/app.py @@ -59,7 +59,7 @@ def signup_for_activity(activity_name: str, email: str): if activity_name not in activities: raise HTTPException(status_code=404, detail="Activity not found") - # Get the specificy activity + # Get the specific activity activity = activities[activity_name] # Add student