From: Eloy Lafuente (stronk7) Date: Tue, 5 Jul 2016 17:59:24 +0000 (+0200) Subject: MDL-55000 grade: Use correct component names + minor jsdocs X-Git-Tag: v3.2.0-beta~893 X-Git-Url: http://git.moodle.org/gw?p=moodle.git;a=commitdiff_plain;h=6b43e964acf7b74b93ad2b36d7c4b311e5b9677f MDL-55000 grade: Use correct component names + minor jsdocs Note the js_call_amd() call still is using incorrect 'grades' as component name where it should be core_grades. That will be fixed by MDL-55133. --- diff --git a/grade/amd/src/edittree_index.js b/grade/amd/src/edittree_index.js index eade80d3e1f..9316f842f6b 100644 --- a/grade/amd/src/edittree_index.js +++ b/grade/amd/src/edittree_index.js @@ -14,10 +14,10 @@ // along with Moodle. If not, see . /** - * Handle add/remove competency links. + * Enhance the gradebook tree setup with various facilities. * - * @module grade - * @package edittree_index + * @module core_grades/edittree_index + * @package core_grades * @copyright 2016 Andrew Nicols * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ @@ -121,7 +121,7 @@ define([ return selected; }; - return /** @alias module:grade/edittree_index */ { + return /** @alias module:core_grades/edittree_index */ { enhance: edittree }; });