Skip to content

Commit 06b9f3b

Browse files
committed
Change "click" to "select"
1 parent 213645d commit 06b9f3b

File tree

4 files changed

+46
-4
lines changed

4 files changed

+46
-4
lines changed

00-quick-start/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ If you see "You don't have access to GitHub Copilot," you'll need to use the fre
4141
If you don't want to install any of the prerequisites, you can use GitHub Codespaces, which has the GitHub Copilot CLI ready to go (you'll need to sign in), pre-installs Python 3.13, pytest, and the GitHub CLI.
4242

4343
1. [Fork this repository](https://github.com/github/github-copilot-cli-for-beginners/fork) to your GitHub account
44-
2. Click **Code** > **Codespaces** > **Create codespace on main**
44+
2. Select **Code** > **Codespaces** > **Create codespace on main**
4545
3. Wait a few minutes for the container to build
4646
4. You're ready to go! The terminal will open automatically in the Codespace environment.
4747

@@ -105,7 +105,7 @@ After trusting the folder, you can sign in with your GitHub account.
105105
1. Copilot CLI displays a one-time code (like `ABCD-1234`)
106106
2. Your browser opens to GitHub's device authorization page. Sign in to GitHub if you haven't already.
107107
3. Enter the code when prompted
108-
4. Click "Authorize" to grant GitHub Copilot CLI access
108+
4. Select "Authorize" to grant GitHub Copilot CLI access
109109
5. Return to your terminal - you're now signed in!
110110

111111
<img src="images/auth-device-flow.png" alt="Device Authorization Flow - showing the 5-step process from terminal login to signed-in confirmation" width="800"/>

03-development-workflows/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ This chapter covers five workflows that developers typically use. **However, you
5151
| Write better commits and PRs | [Workflow 5: Git Integration](#workflow-5-git-integration) |
5252
| See a full bug-fix workflow end to end | [Putting It All Together](#putting-it-all-together-bug-fix-workflow) |
5353

54-
**Click to expand any of the following workflows** and see how GitHub Copilot CLI can enhance your development process in that area.
54+
**Select a workflow below to expand it** and see how GitHub Copilot CLI can enhance your development process in that area.
5555

5656
---
5757

04-agents-custom-instructions/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ Each topic below is self-contained. **Pick what interests you - you don't need t
203203
| Set up always-on project context | [Configuring Your Project for Copilot](#configuring-your-project-for-copilot) |
204204
| Look up YAML properties and tools | [Agent File Reference](#agent-file-reference) |
205205
206-
Click a scenario below to expand it.
206+
Select a scenario below to expand it.
207207
208208
---
209209

copilot-cli-for-beginners.sln

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio Version 17
3+
VisualStudioVersion = 17.5.2.0
4+
MinimumVisualStudioVersion = 10.0.40219.1
5+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{5D20AA90-6969-D8BD-9DCD-8634F4692FDA}"
6+
EndProject
7+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "book-app-project-cs", "book-app-project-cs", "{0981EE05-04C9-EE3C-5BDE-5E74524F3A43}"
8+
EndProject
9+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BookApp", "samples\book-app-project-cs\BookApp.csproj", "{E8EB8439-E295-1DF6-3DF5-D1DD7DF37DAE}"
10+
EndProject
11+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{CEF70AFC-D43E-27FA-D094-9F31C7BF3FF2}"
12+
EndProject
13+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BookApp.Tests", "samples\book-app-project-cs\Tests\BookApp.Tests.csproj", "{B2FA1A9E-FE8B-C09B-8BE9-93A3FE029A41}"
14+
EndProject
15+
Global
16+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
17+
Debug|Any CPU = Debug|Any CPU
18+
Release|Any CPU = Release|Any CPU
19+
EndGlobalSection
20+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
21+
{E8EB8439-E295-1DF6-3DF5-D1DD7DF37DAE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
22+
{E8EB8439-E295-1DF6-3DF5-D1DD7DF37DAE}.Debug|Any CPU.Build.0 = Debug|Any CPU
23+
{E8EB8439-E295-1DF6-3DF5-D1DD7DF37DAE}.Release|Any CPU.ActiveCfg = Release|Any CPU
24+
{E8EB8439-E295-1DF6-3DF5-D1DD7DF37DAE}.Release|Any CPU.Build.0 = Release|Any CPU
25+
{B2FA1A9E-FE8B-C09B-8BE9-93A3FE029A41}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
26+
{B2FA1A9E-FE8B-C09B-8BE9-93A3FE029A41}.Debug|Any CPU.Build.0 = Debug|Any CPU
27+
{B2FA1A9E-FE8B-C09B-8BE9-93A3FE029A41}.Release|Any CPU.ActiveCfg = Release|Any CPU
28+
{B2FA1A9E-FE8B-C09B-8BE9-93A3FE029A41}.Release|Any CPU.Build.0 = Release|Any CPU
29+
EndGlobalSection
30+
GlobalSection(SolutionProperties) = preSolution
31+
HideSolutionNode = FALSE
32+
EndGlobalSection
33+
GlobalSection(NestedProjects) = preSolution
34+
{0981EE05-04C9-EE3C-5BDE-5E74524F3A43} = {5D20AA90-6969-D8BD-9DCD-8634F4692FDA}
35+
{E8EB8439-E295-1DF6-3DF5-D1DD7DF37DAE} = {0981EE05-04C9-EE3C-5BDE-5E74524F3A43}
36+
{CEF70AFC-D43E-27FA-D094-9F31C7BF3FF2} = {0981EE05-04C9-EE3C-5BDE-5E74524F3A43}
37+
{B2FA1A9E-FE8B-C09B-8BE9-93A3FE029A41} = {CEF70AFC-D43E-27FA-D094-9F31C7BF3FF2}
38+
EndGlobalSection
39+
GlobalSection(ExtensibilityGlobals) = postSolution
40+
SolutionGuid = {0F6FB396-CBDF-43A4-9787-D9C1F4CBD3EB}
41+
EndGlobalSection
42+
EndGlobal

0 commit comments

Comments
 (0)