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 LJMcWilliamsQuiz implements QuizQuestionProvider {
8
+ export class LjMcwilliamsQuiz implements QuizQuestionProvider {
9
9
getProviderName ( ) : string {
10
10
return 'ljmcwilliams' ;
11
11
}
12
12
13
13
makeQuizQuestions ( ) : QuizQuestion [ ] {
14
14
return [
15
- LJMcWilliamsQuiz . makeQuestion0 ( ) ,
16
- LJMcWilliamsQuiz . makeQuestion1 ( ) ,
17
- LJMcWilliamsQuiz . makeQuestion2 ( ) ,
15
+ LjMcwilliamsQuiz . makeQuestion0 ( ) ,
16
+ LjMcwilliamsQuiz . makeQuestion1 ( ) ,
17
+ LjMcwilliamsQuiz . makeQuestion2 ( ) ,
18
18
] ;
19
19
}
20
20
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { Module } from '@nestjs/common';
2
2
import { AnotherQuiz } from './another_quiz.js' ;
3
3
import { AnthonyMaysQuiz } from './anthony_mays_quiz.js' ;
4
4
import { JosephCaballeroQuiz } from './joseph_caballero_quiz.js' ;
5
- import { LJMcWilliamsQuiz } from './lj_mcwilliams_quiz.js' ;
5
+ import { LjMcwilliamsQuiz } from './lj_mcwilliams_quiz.js' ;
6
6
import { OyeyemiJimohQuiz } from './oyeyemi_jimoh_quiz.js' ;
7
7
import { YafiahAbdullahQuiz } from './yafiah_abdullah_quiz.js' ;
8
8
@@ -16,7 +16,7 @@ const QUIZ_PROVIDERS = [
16
16
AnotherQuiz ,
17
17
JosephCaballeroQuiz ,
18
18
OyeyemiJimohQuiz ,
19
- LJMcWilliamsQuiz ,
19
+ LjMcwilliamsQuiz ,
20
20
] ;
21
21
22
22
@Module ( {
You can’t perform that action at this time.
0 commit comments