Skip to content

Commit 7e044f0

Browse files
committed
Changed feature request
1 parent 23581ef commit 7e044f0

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

content/2-issues.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The shelter wants to begin pushing new features to the website. They want to sta
2121

2222
## Creating issues to manage feature requests
2323

24-
Our project needs two main updates. We want to make the updates to support development for our project, and add filtering capabilities for users to find the right dog. Let's create the issues for each of these. In the next few exercises we'll begin making the appropriate updates to our project to resolve these requests.
24+
Our project needs two main updates. We want to make the updates to support development for our project, and add a flag showing availability for users to find the right dog. Let's create the issues for each of these. In the next few exercises we'll begin making the appropriate updates to our project to resolve these requests.
2525

2626
1. Return to the repository you created at the beginning of this workshop.
2727
2. Select the **Issues** tab.
@@ -30,11 +30,11 @@ Our project needs two main updates. We want to make the updates to support devel
3030
5. Select **Create more** at the bottom of the page to streamline the creation process.
3131
6. Create new issues by adding the information indicated in the table below, selecting **Submit new issue** after creating each one:
3232

33-
| Title | Description |
34-
| ----------------------- | ------------------------------------------------------------------------------ |
35-
| Define codespace | Create the necessary definitions for the codespace to enable cloud development |
36-
| Implement testing | Create a workflow to automate testing for continuous integration |
37-
| Add filters to dog list | Add the code to allow users to filter for dogs by breed and availability |
33+
| Title | Description |
34+
| --------------------------------- | ------------------------------------------------------------------------------------------------------- |
35+
| Define codespace | Create the necessary definitions for the codespace to enable cloud development |
36+
| Implement testing | Create a workflow to automate testing for continuous integration |
37+
| Add availability flag to dog list | Add the necessary code to display a flag for the status of each dog, and the tests for the new behavior |
3838

3939
> [!TIP]
4040
> You can also save an issue by pressing <kbd>Ctl</kbd> - <kbd>Enter</kbd> (or <kbd>Cmd</kbd> - <kbd>Return</kbd> on a Mac) in the title or description fields.

content/5-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ We've explored how we can use GitHub Copilot to explore our project and to provi
1010
1111
## Scenario
1212

13-
The website currently lists all dogs in the database. While this was appropriate when the shelter only had a few dogs, as time has gone on the number has grown and it's difficult for people to sift through who's available to adopt. The shelter has asked you to add filters to the website to allow a user to select a breed of dog and only display dogs which are available for adoption.
13+
The website currently lists just the name and breed of the dog on the landing page. Users would like to see at a glance the adoption status so they don't get their hopes up only to discover a dog isn't available. You'll utilize Copilot to add the feature, as well as generate and run the tests to confirm the updates.
1414

1515
## Overview of this exercise
1616

@@ -34,7 +34,7 @@ Let's ask Copilot to generate the code to add the feature and tests!
3434
4. Use the following prompt to ask Copilot to generate the necessary code and tests to implement filtering:
3535

3636
```markdown
37-
Update the website to allow for filtering of dogs by breed and adoption status. The page should update as filters are modified. Ensure both unit tests and end to end tests are created, and they all pass. If any tests are failing, make the necessary updates so they pass.
37+
Let's update the site to have an adoption status flag for the dogs! Create the necessary tests and ensure they all pass.
3838
```
3939

4040
## Summary and next steps

0 commit comments

Comments
 (0)