From f85a72532412a5bca8366226c693c577a01be643 Mon Sep 17 00:00:00 2001 From: kastone Date: Mon, 3 Oct 2022 17:36:40 -0400 Subject: [PATCH] Git allows switching branches with either the new experimental 'switch' command or 'checkout'. Changing the quiz answers to reflect this. --- quiz-app/src/assets/translations/en.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quiz-app/src/assets/translations/en.json b/quiz-app/src/assets/translations/en.json index 392f3bb0..5847432d 100644 --- a/quiz-app/src/assets/translations/en.json +++ b/quiz-app/src/assets/translations/en.json @@ -209,11 +209,11 @@ "questionText": "How do you switch to a branch?", "answerOptions": [ { - "answerText": "git checkout [branch-name]", + "answerText": "git fetch [branch-name]", "isCorrect": "false" }, { - "answerText": "git switch [branch-name]", + "answerText": "git switch [branch-name] OR git checkout [branch-name]", "isCorrect": "true" }, {