MDL-78379 js: Add missing newline character

This commit is contained in:
Misha Golenkov
2023-07-06 16:15:36 +10:00
parent b509652427
commit 412231454f
+1 -1
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"
);
}