File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
lesson_03/quiz/src/quizzes Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,16 +5,16 @@ import {
5
5
QuizQuestionProvider ,
6
6
} from 'codedifferently-instructional' ;
7
7
8
- export class meiko_stephens_quiz implements QuizQuestionProvider {
8
+ export class MeikoStephensQuiz implements QuizQuestionProvider {
9
9
getProviderName ( ) : string {
10
10
return 'meikostephens' ;
11
11
}
12
12
13
13
makeQuizQuestions ( ) : QuizQuestion [ ] {
14
14
return [
15
- meiko_stephens_quiz . makeQuestion0 ( ) ,
16
- meiko_stephens_quiz . makeQuestion1 ( ) ,
17
- meiko_stephens_quiz . makeQuestion2 ( ) ,
15
+ MeikoStephensQuiz . makeQuestion0 ( ) ,
16
+ MeikoStephensQuiz . makeQuestion1 ( ) ,
17
+ MeikoStephensQuiz . makeQuestion2 ( ) ,
18
18
] ;
19
19
}
20
20
Original file line number Diff line number Diff line change 1
1
import { Module } from '@nestjs/common' ;
2
2
import { AnotherQuiz } from './another_quiz.js' ;
3
3
import { AnthonyMaysQuiz } from './anthony_mays_quiz.js' ;
4
- import { meiko_stephens_quiz } from './meiko_stephens_quiz.js' ;
4
+ import { MeikoStephensQuiz } from './meiko_stephens_quiz.js' ;
5
5
6
6
export const Quizzes = Symbol . for ( 'Quizzes' ) ;
7
7
8
8
// Add your quiz provider here.
9
- const QUIZ_PROVIDERS = [ AnthonyMaysQuiz , AnotherQuiz , meiko_stephens_quiz ] ;
9
+ const QUIZ_PROVIDERS = [ AnthonyMaysQuiz , AnotherQuiz , MeikoStephensQuiz ] ;
10
10
11
11
@Module ( {
12
12
providers : [
You can’t perform that action at this time.
0 commit comments