Skip to content

Commit 4cd25b9

Browse files
authored
English grammar (#1400)
Fix verb agreement with plural noun: There is no .. projects→There are no ... projects Alternatively maybe it should be: `There is no Java project opened in the current workspace`
1 parent c3e7e5e commit 4cd25b9

File tree

1 file changed

+1
-1
lines changed
  • src/project-settings/assets/mainpage/features/component

1 file changed

+1
-1
lines changed

src/project-settings/assets/mainpage/features/component/Exception.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const Exception = (): JSX.Element | null => {
1818
command = "workbench.action.files.openFileFolder";
1919
}
2020
content = (
21-
<span>There is no Java projects opened in the current workspace. Please try to <a href={encodeCommandUriWithTelemetry(WEBVIEW_ID, "classpath.reload", "workbench.action.webview.reloadWebviewAction")}>reload the page</a> or <a href={encodeCommandUriWithTelemetry(WEBVIEW_ID, "classpath.openProject", command)}>open a Java project</a>.</span>
21+
<span>There are no Java projects opened in the current workspace. Please try to <a href={encodeCommandUriWithTelemetry(WEBVIEW_ID, "classpath.reload", "workbench.action.webview.reloadWebviewAction")}>reload the page</a> or <a href={encodeCommandUriWithTelemetry(WEBVIEW_ID, "classpath.openProject", command)}>open a Java project</a>.</span>
2222
);
2323
break;
2424
case ProjectSettingsException.JavaExtensionNotInstalled:

0 commit comments

Comments
 (0)