MDL-78379 js: Add missing newline character

This commit is contained in:
Misha Golenkov 2023-07-06 15:55:31 +10:00
parent 6628845087
commit d06d29ef5d

View File

@ -82,7 +82,7 @@ function requirejs_fix_define(string $modulename, string $js): string {
} else if (!preg_match('/define\s*\(/', $js)) {
echo(
"// JS module '{$modulename}' cannot be loaded, or does not contain a javascript" .
' module in AMD format. "define()" not found.'
' module in AMD format. "define()" not found.' . "\n"
);
}