Explorar o código

Added more meaningful name to getOptions parameter.

Szymon Kupś %!s(int64=10) %!d(string=hai) anos
pai
achega
2f84a0c070
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      dev/tasks/dev.js

+ 2 - 2
dev/tasks/dev.js

@@ -52,12 +52,12 @@ module.exports = ( grunt ) => {
 		boilerplateUpdateTask( ckeditor5Path, packageJSON, options, grunt.log.writeln, grunt.log.error );
 	} );
 
-	function getOptions( context ) {
+	function getOptions( task ) {
 		const options = {
 			workspaceRoot: '..'
 		};
 
-		return context.options( options );
+		return task.options( options );
 	}
 };