Skip to content

Commit 87ab416

Browse files
committed
Amazing
1 parent a87e2b1 commit 87ab416

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lesson_03/quiz/src/quizzes/Davis_D._quiz.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class DavisQuiz implements QuizQuestionProvider {
2828
[AnswerChoice.C, 'Ask speaker questions'],
2929
[AnswerChoice.D, 'Be attentive'],
3030
]),
31-
AnswerChoice.A,
31+
AnswerChoice.UNANSWERED,
3232
); // Replace `UNANSWERED` with the correct answer.
3333
}
3434

@@ -41,7 +41,7 @@ export class DavisQuiz implements QuizQuestionProvider {
4141
[AnswerChoice.B, 'Pay, Listen, Persuade'],
4242
[AnswerChoice.C, 'Purpose, Prep, Show-up'],
4343
]),
44-
AnswerChoice.C,
44+
AnswerChoice.UNANSWERED,
4545
); // Provide an answer.
4646
}
4747

@@ -55,7 +55,7 @@ export class DavisQuiz implements QuizQuestionProvider {
5555
[AnswerChoice.C, 'Maybe'],
5656
[AnswerChoice.D, 'IDK'],
5757
]),
58-
AnswerChoice.B,
58+
AnswerChoice.UNANSWERED,
5959
); // Replace `UNANSWERED` with the correct answer.
6060
}
6161
}

0 commit comments

Comments
 (0)