diff --git a/src/app/components/content/IsaacInlineRegion.tsx b/src/app/components/content/IsaacInlineRegion.tsx index 342da676a1..17663f0f09 100644 --- a/src/app/components/content/IsaacInlineRegion.tsx +++ b/src/app/components/content/IsaacInlineRegion.tsx @@ -30,7 +30,7 @@ export const useInlineRegionPart = (pageQuestions: AppQuestionDTO[] | undefined) const defaultFeedback = (correctness: QuestionCorrectness) : ContentDTO => { const feedbackMap : {[key in QuestionCorrectness]: string} = { "CORRECT" : "Correct!", - "INCORRECT" : "Check your working.", + "INCORRECT" : "Check your answer.", "NOT_ANSWERED" : "You did not provide an answer.", "NOT_SUBMITTED" : "This answer is missing a unit.", // this is a special case for numeric questions, may need to be updated if we add more inline q types };