Skip to content

Commit 3ff17f5

Browse files
Fix KBD tag
1 parent c6292d1 commit 3ff17f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/guided-workshop/exercises/5-coding.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ There are several ways to interact with Copilot Chat in Visual Studio Code, incl
225225

226226
1. Open the existing **Hours.js** file.
227227

228-
1. Access the **inline chat view** by pressing <kbd>⌘ (CMD)</kbd> - <kbd>i</kbd> on MacOS, or <bd>ctl</kbd> - <kbd>i</kbd> on Windows or Linux.
228+
1. Access the **inline chat view** by pressing <kbd>⌘ (CMD)</kbd> - <kbd>i</kbd> on MacOS, or <kbd>ctl</kbd> - <kbd>i</kbd> on Windows or Linux.
229229

230230
1. When using Copilot Chat, you can use [slash commands](https://github.blog/changelog/2024-01-30-code-faster-and-better-with-github-copilots-new-features-in-visual-studio/#slash-commands), such as */fix*, */doc*, */explain* and more. Type **/doc**, to ask Copilot to improve the **Hours.js** file with some additional documentation. You should find that Copilot adds comments which resemble the JSDoc format:
231231

@@ -247,7 +247,7 @@ There are several ways to interact with Copilot Chat in Visual Studio Code, incl
247247

248248
1. Remove **.toLocaleDateString**.
249249

250-
1. Select the line that you just changed, and access the **inline chat view** by pressing <kbd>⌘ (CMD)</kbd> - <kbd>i</kbd> on MacOS, or <bd>ctl</kbd> - <kbd>i</kbd> on Windows or Linux. Type **/fix** and submit the request by pressing <kbd>enter</kbd>. Notice that the inline chat suggests the original line? Go ahead and accept the suggestion.
250+
1. Select the line that you just changed, and access the **inline chat view** by pressing <kbd>⌘ (CMD)</kbd> - <kbd>i</kbd> on MacOS, or <kbd>ctl</kbd> - <kbd>i</kbd> on Windows or Linux. Type **/fix** and submit the request by pressing <kbd>enter</kbd>. Notice that the inline chat suggests the original line? Go ahead and accept the suggestion.
251251

252252
```javascript
253253
const today = new Date().toLocaleDateString("en-US", { weekday: "long" });

0 commit comments

Comments
 (0)