diff --git a/backend/src/services/questions.ts b/backend/src/services/questions.ts index 2e26c960..21794ff5 100644 --- a/backend/src/services/questions.ts +++ b/backend/src/services/questions.ts @@ -52,7 +52,7 @@ export async function createQuestion(loId: LearningObjectIdentifier, questionDat export async function deleteQuestion(questionId: QuestionId): Promise { const questionRepository = getQuestionRepository(); - const question = await fetchQuestion(questionId); // throws error if not found + const question = await fetchQuestion(questionId); // Throws error if not found const loId: LearningObjectIdentifier = { ...questionId.learningObjectIdentifier,