diff --git a/cloze.module b/cloze.module index 55fc4d4..14a695b 100644 --- a/cloze.module +++ b/cloze.module @@ -9,7 +9,7 @@ */ function cloze_help($path, $args) { if ($path == 'admin/help#cloze') { - return t('This module provides a cloze question type for Quiz.'); + return t('This module provides a fill in the blanks question type for Quiz.'); } } @@ -19,7 +19,7 @@ function cloze_help($path, $args) { function cloze_quiz_question_info() { return array( 'cloze' => array( - 'name' => t('Cloze question'), + 'name' => t('Fill in the blanks question'), 'description' => t('Quiz questions that allow a user to fill-in the missing words.'), 'question provider' => 'ClozeQuestion', 'response provider' => 'ClozeResponse',