Skip to content

Commit

Permalink
Merge pull request github#36555 from github/repo-sync
Browse files Browse the repository at this point in the history
Repo sync
  • Loading branch information
docs-bot authored Feb 27, 2025
2 parents b05ab37 + 8bbb598 commit a7fd284
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ First, we need to create a local copy of the example repository:

Now that we've cloned the repository, let's run `bugged_dice_battle.py` to see the output:

1. Open the Command Palette by pressing <kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Mac) or <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Windows/Linux).
1. Open the Command Palette by pressing <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Windows/Linux) or <kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Mac).
1. Type `Terminal: Create New Terminal` and press <kbd>Enter</kbd>.
1. In the terminal tab, paste the following command.

Expand All @@ -80,7 +80,11 @@ Now that we've cloned the repository, let's run `bugged_dice_battle.py` to see t

1. Press <kbd>Enter</kbd> to run the program.

Unfortunately, we get some error text in our terminal ending with the following message: `TypeError: can only concatenate str (not "int") to str`. To understand what this means, press <kbd>Command</kbd>+<kbd>Shift</kbd>+<kbd>I</kbd> (Mac) or <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>I</kbd> (Windows/Linux) to open {% data variables.product.prodname_copilot_chat_short %}, then paste and send the following prompt:
Unfortunately, we get some error text in our terminal ending with the following message:

> TypeError: can only concatenate str (not "int") to str

To understand what this means, press <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>I</kbd> (Windows/Linux) or <kbd>Command</kbd>+<kbd>Shift</kbd>+<kbd>I</kbd> (Mac) to **open {% data variables.product.prodname_copilot_chat_short %}**, then paste and send the following prompt:

```text copy
Explain in depth why my code produces the following error and how I can fix it:
Expand Down
1 change: 1 addition & 0 deletions src/events/components/experiments/experiment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export function shouldShowExperiment(
? routerQuery.feature.toLowerCase() === experiment.turnOnWithURLParam.toLowerCase()
: false
) {
controlGroupOverride[experimentKey] = TREATMENT_VARIATION
return true
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/search/components/input/SearchOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ export function SearchOverlay({
onClick={async () => {
if (await getIsStaff()) {
// Hubbers users use an internal discussion for feedback
window.open('https://github.com/github/docs-team/discussions/4952', '_blank')
window.open('https://github.com/github/docs-engineering/discussions/5295', '_blank')
} else {
// TODO: On ship date set this value
// window.open('TODO', '_blank')
Expand Down

0 comments on commit a7fd284

Please sign in to comment.