Skip to content

Commit 57d5f50

Browse files
committed
feat: updated camel casing for quiz class
1 parent 43665c6 commit 57d5f50

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lesson_03/quiz/src/quizzes/lj_mcwilliams_quiz.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ import {
55
QuizQuestionProvider,
66
} from 'codedifferently-instructional';
77

8-
export class LJMcWilliamsQuiz implements QuizQuestionProvider {
8+
export class LjMcwilliamsQuiz implements QuizQuestionProvider {
99
getProviderName(): string {
1010
return 'ljmcwilliams';
1111
}
1212

1313
makeQuizQuestions(): QuizQuestion[] {
1414
return [
15-
LJMcWilliamsQuiz.makeQuestion0(),
16-
LJMcWilliamsQuiz.makeQuestion1(),
17-
LJMcWilliamsQuiz.makeQuestion2(),
15+
LjMcwilliamsQuiz.makeQuestion0(),
16+
LjMcwilliamsQuiz.makeQuestion1(),
17+
LjMcwilliamsQuiz.makeQuestion2(),
1818
];
1919
}
2020

lesson_03/quiz/src/quizzes/quizzes.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Module } from '@nestjs/common';
22
import { AnotherQuiz } from './another_quiz.js';
33
import { AnthonyMaysQuiz } from './anthony_mays_quiz.js';
44
import { JosephCaballeroQuiz } from './joseph_caballero_quiz.js';
5-
import { LJMcWilliamsQuiz } from './lj_mcwilliams_quiz.js';
5+
import { LjMcwilliamsQuiz } from './lj_mcwilliams_quiz.js';
66
import { OyeyemiJimohQuiz } from './oyeyemi_jimoh_quiz.js';
77
import { YafiahAbdullahQuiz } from './yafiah_abdullah_quiz.js';
88

@@ -16,7 +16,7 @@ const QUIZ_PROVIDERS = [
1616
AnotherQuiz,
1717
JosephCaballeroQuiz,
1818
OyeyemiJimohQuiz,
19-
LJMcWilliamsQuiz,
19+
LjMcwilliamsQuiz,
2020
];
2121

2222
@Module({

0 commit comments

Comments
 (0)