diff --git a/src/editors/data/constants/problem.js b/src/editors/data/constants/problem.js index d196a2a5e..9d58ed59c 100644 --- a/src/editors/data/constants/problem.js +++ b/src/editors/data/constants/problem.js @@ -21,7 +21,7 @@ export const ProblemTypes = StrictDict({ title: 'Single select', preview: singleSelect, previewDescription: 'Learners must select the correct answer from a list of possible options.', - description: 'Enter your single select answers below and select which choice is correct', + description: 'Enter your single select answers below and select which choices are correct. Learners must choose one correct answer.', helpLink: 'https://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/exercises_tools/multiple_choice.html', prev: ProblemTypeKeys.TEXTINPUT, next: ProblemTypeKeys.MULTISELECT, @@ -32,7 +32,7 @@ export const ProblemTypes = StrictDict({ title: 'Multi-select', preview: multiSelect, previewDescription: 'Learners must select all correct answers from a list of possible options.', - description: 'Enter your multi-select answers below and select which choices are correct', + description: 'Enter your multi select answers below and select which choices are correct. Learners must choose all correct answers.', helpLink: 'https://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/exercises_tools/checkbox.html', next: ProblemTypeKeys.DROPDOWN, prev: ProblemTypeKeys.SINGLESELECT, @@ -42,7 +42,7 @@ export const ProblemTypes = StrictDict({ title: 'Dropdown', preview: dropdown, previewDescription: 'Learners must select the correct answer from a list of possible options', - description: 'Enter your dropdown answers below and select which choice is correct', + description: 'Enter your dropdown answers below and select which choice is correct. Learners must select one correct answer.', helpLink: 'https://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/exercises_tools/dropdown.html', next: ProblemTypeKeys.NUMERIC, prev: ProblemTypeKeys.MULTISELECT, @@ -52,7 +52,7 @@ export const ProblemTypes = StrictDict({ title: 'Numerical input', preview: numericalInput, previewDescription: 'Specify one or more correct numeric answers, submitted in a response field.', - description: 'Enter correct numerical input answers below', + description: 'Enter correct numerical input answers below. Learners must enter one correct answer.', helpLink: 'https://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/exercises_tools/numerical_input.html', next: ProblemTypeKeys.TEXTINPUT, prev: ProblemTypeKeys.DROPDOWN, @@ -62,7 +62,7 @@ export const ProblemTypes = StrictDict({ title: 'Text input', preview: textInput, previewDescription: 'Specify one or more correct text answers, including numbers and special characters, submitted in a response field.', - description: 'Enter your text input answers below and select which choices are correct', + description: 'Enter your text input answers below and select which choices are correct. Learners must enter one correct answer.', helpLink: 'https://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/exercises_tools/text_input.html', prev: ProblemTypeKeys.NUMERIC, next: ProblemTypeKeys.SINGLESELECT,