From 5680217e1aa1f974700fb99046be3a9fc0433d8a Mon Sep 17 00:00:00 2001 From: Kristofer Koishigawa Date: Wed, 18 Dec 2024 20:37:28 +0900 Subject: [PATCH] fix: update videoid and multiple choice question for the how to install vscode lecture (#57587) --- .../672d45583fd75a504136fbbb.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/curriculum/challenges/english/25-front-end-development/lecture-working-with-code-editors-and-ides/672d45583fd75a504136fbbb.md b/curriculum/challenges/english/25-front-end-development/lecture-working-with-code-editors-and-ides/672d45583fd75a504136fbbb.md index efbc82e4fd7..1eb9879c227 100644 --- a/curriculum/challenges/english/25-front-end-development/lecture-working-with-code-editors-and-ides/672d45583fd75a504136fbbb.md +++ b/curriculum/challenges/english/25-front-end-development/lecture-working-with-code-editors-and-ides/672d45583fd75a504136fbbb.md @@ -2,7 +2,7 @@ id: 672d45583fd75a504136fbbb title: How to Install Visual Studio Code onto Your Computer challengeType: 11 -videoId: hWa_PgsNSw0 +videoId: JuxdN8OWllk dashedName: how-to-install-visual-studio-code-onto-your-computer --- @@ -86,15 +86,15 @@ The lecture describes several ways to install VSCode on Mac, but one common meth ## --text-- -On Linux, what command would you use to install VSCode using the Arch Linux package manager? +What command would you use to install VSCode using Homebrew? ## --answers-- -`sudo apt-get install code` +`sudo brew -i code` ### --feedback-- -The lecture provides a specific command for Arch Linux users. +The lecture provides a specific command for Homebrew. --- @@ -102,19 +102,19 @@ The lecture provides a specific command for Arch Linux users. ### --feedback-- -The lecture provides a specific command for Arch Linux users. +The lecture provides a specific command for Homebrew. --- -`sudo pacman -S code` +`brew install --cask visual-studio-code` --- -`sudo dnf install code` +`homebrew install vscode` ### --feedback-- -The lecture provides a specific command for Arch Linux users. +The lecture provides a specific command for Homebrew. ## --video-solution--