fix error msg

This commit is contained in:
João Moreno
2020-08-03 16:36:06 +02:00
parent 68fdf05c03
commit e8f2b6d6ae

View File

@@ -581,7 +581,7 @@ submenusExtensionPoint.setHandler(extensions => {
}
if (!extension.description.enableProposedApi) {
collector.error(localize('submenu.proposedAPI.invalid', "Submenus are proposed API and are only available when running out of dev or with the following command line switch: --enable-proposed-api {1}", extension.description.identifier.value));
collector.error(localize('submenu.proposedAPI.invalid', "Submenus are proposed API and are only available when running out of dev or with the following command line switch: --enable-proposed-api {0}", extension.description.identifier.value));
return;
}