@@ -5,16 +5,16 @@ import {
55 QuizQuestionProvider ,
66} from 'codedifferently-instructional' ;
77
8- export class TobaisEvansQuiz implements QuizQuestionProvider {
8+ export class TobiasEvansQuiz implements QuizQuestionProvider {
99 getProviderName ( ) : string {
10- return 'tobaisevans ' ;
10+ return 'tobiasevans ' ;
1111 }
1212
1313 makeQuizQuestions ( ) : QuizQuestion [ ] {
1414 return [
15- TobaisEvansQuiz . makeQuestion0 ( ) ,
16- TobaisEvansQuiz . makeQuestion1 ( ) ,
17- TobaisEvansQuiz . makeQuestion2 ( ) ,
15+ TobiasEvansQuiz . makeQuestion0 ( ) ,
16+ TobiasEvansQuiz . makeQuestion1 ( ) ,
17+ TobiasEvansQuiz . makeQuestion2 ( ) ,
1818 ] ;
1919 }
2020
@@ -28,7 +28,7 @@ export class TobaisEvansQuiz implements QuizQuestionProvider {
2828 [ AnswerChoice . C , 'C++' ] ,
2929 [ AnswerChoice . D , 'Java' ] ,
3030 ] ) ,
31- AnswerChoice . UNANSWERED , // Replace with correct answer later
31+ AnswerChoice . B , // correct answer
3232 ) ;
3333 }
3434
@@ -42,7 +42,7 @@ export class TobaisEvansQuiz implements QuizQuestionProvider {
4242 [ AnswerChoice . C , 'Create a new branch' ] ,
4343 [ AnswerChoice . D , 'Send changes to the internet' ] ,
4444 ] ) ,
45- AnswerChoice . UNANSWERED , // Replace with correct answer later
45+ AnswerChoice . B , // correct answer
4646 ) ;
4747 }
4848
@@ -56,7 +56,7 @@ export class TobaisEvansQuiz implements QuizQuestionProvider {
5656 [ AnswerChoice . C , '<h1>' ] ,
5757 [ AnswerChoice . D , '<title>' ] ,
5858 ] ) ,
59- AnswerChoice . UNANSWERED , // Replace with correct answer later
59+ AnswerChoice . C , // correct answer
6060 ) ;
6161 }
6262}
0 commit comments