Skip to content

Commit b25e10c

Browse files
committed
fix: update answer choices to UNANSWERED in KhaylaSaundersQuiz
1 parent 69a3afa commit b25e10c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lesson_03/quiz/src/quizzes/khayla_quiz.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class KhaylaSaundersQuiz implements QuizQuestionProvider {
3434
'Use Git stash to temporarily save uncommitted changes. ',
3535
],
3636
]),
37-
AnswerChoice.B,
37+
AnswerChoice.UNANSWERED,
3838
); // Replace `UNANSWERED` with the correct answer.
3939
}
4040

@@ -54,7 +54,7 @@ export class KhaylaSaundersQuiz implements QuizQuestionProvider {
5454
],
5555
[AnswerChoice.D, 'When you need to undo the last commit '],
5656
]),
57-
AnswerChoice.A,
57+
AnswerChoice.UNANSWERED,
5858
); // Replace `UNANSWERED` with the correct answer.
5959
}
6060
private static makeQuestion2(): QuizQuestion {
@@ -67,7 +67,7 @@ export class KhaylaSaundersQuiz implements QuizQuestionProvider {
6767
[AnswerChoice.C, 'Supersets'],
6868
[AnswerChoice.D, 'Git'],
6969
]),
70-
AnswerChoice.A,
70+
AnswerChoice.UNANSWERED,
7171
); // Replace `UNANSWERED` with the correct answer.
7272
}
7373
}

0 commit comments

Comments
 (0)