From 6e54057a34b5c2970c162e8aa23af8786a607781 Mon Sep 17 00:00:00 2001 From: Edward Mezarina Date: Mon, 9 Feb 2026 10:56:22 -0500 Subject: [PATCH 1/3] Clean up doc --- CONTRIBUTING.md | 2 +- docs/installation.md | 2 +- docs/user-guide.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 46cd467c..aa553fad 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,7 +11,7 @@ We welcome contributions, and request you follow these guidelines. Please raise any bug reports on the [issue tracker](https://github.com/OpenLiberty/liberty-tools-eclipse/issues). Be sure to search the list to see if your issue has already been raised. -A good bug report is one that make it easy for us to understand what you were trying to do and what went wrong. Provide as much context as possible so we can try to recreate the issue. +A good bug report is one that makes it easy for us to understand what you were trying to do and what went wrong. Provide as much context as possible so we can try to recreate the issue. ### Legal diff --git a/docs/installation.md b/docs/installation.md index f5246396..3ebbf4f2 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -47,7 +47,7 @@ You can use the **Install New Software** option in the Eclipse **Help** menu to Download this zip to your local workstation and copy the path to the downloaded archive. - Click on the **Add...** button to open the **Add Repository** view. Specify a **Name** of your choice (optional), and click the **Add** button. paste the location of the downloaded archive, and click the **Add** button. + Click on the **Add...** button to open the **Add Repository** dialog. Copy and paste the location of the downloaded archive as the **Location**, specify a **Name** of your choice (optional), and click the **Add** button. ![Step 2b. Add repository](images/install-addRepoArchive.png) diff --git a/docs/user-guide.md b/docs/user-guide.md index 39450369..04c09c1e 100644 --- a/docs/user-guide.md +++ b/docs/user-guide.md @@ -315,7 +315,7 @@ Liberty Tools editing assistance provides code completion, diagnostics, and quic 4. To use Jakarta EE-specific quick-fixes, hover over a supported Jakarta EE error. A drop-down list of quick-fixes appears. -![Jakarta EE quick-dix](images/jakarta-ee-ls-quick-fix.png) +![Jakarta EE quick-fix](images/jakarta-ee-ls-quick-fix.png) Jakarta EE API configuration assistance is offered through Eclipse LSP4Jakarta, the Language Server for Jakarta EE. For more information, see the [project documentation in GitHub](https://github.com/eclipse/lsp4jakarta#eclipse-lsp4jakarta). From c6acd71bd4013b119f4df52988a736fac3e6ebe0 Mon Sep 17 00:00:00 2001 From: Edward Mezarina Date: Mon, 9 Feb 2026 10:57:06 -0500 Subject: [PATCH 2/3] Cleanup trace message typo --- .../io/openliberty/tools/eclipse/debug/DebugModeHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/io.openliberty.tools.eclipse.ui/src/io/openliberty/tools/eclipse/debug/DebugModeHandler.java b/bundles/io.openliberty.tools.eclipse.ui/src/io/openliberty/tools/eclipse/debug/DebugModeHandler.java index 61539bd0..bf5913ed 100644 --- a/bundles/io.openliberty.tools.eclipse.ui/src/io/openliberty/tools/eclipse/debug/DebugModeHandler.java +++ b/bundles/io.openliberty.tools.eclipse.ui/src/io/openliberty/tools/eclipse/debug/DebugModeHandler.java @@ -411,7 +411,7 @@ private VirtualMachine attachJVM(String hostName, int port, AttachingConnector c } catch (IOException e) { if (Trace.isEnabled()) { Trace.getTracer().trace(Trace.TRACE_UI, - "Error occured while trying to connect to the remote virtual machine " + e.getMessage(), e); + "Error occurred while trying to connect to the remote virtual machine " + e.getMessage(), e); } } catch (TimeoutException e2) { // do nothing From 55aac48fd797add578776a9827d9396f92918621 Mon Sep 17 00:00:00 2001 From: Edward Mezarina Date: Tue, 10 Feb 2026 10:55:24 -0500 Subject: [PATCH 3/3] Code review --- .../io/openliberty/tools/eclipse/debug/DebugModeHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/io.openliberty.tools.eclipse.ui/src/io/openliberty/tools/eclipse/debug/DebugModeHandler.java b/bundles/io.openliberty.tools.eclipse.ui/src/io/openliberty/tools/eclipse/debug/DebugModeHandler.java index bf5913ed..e78be599 100644 --- a/bundles/io.openliberty.tools.eclipse.ui/src/io/openliberty/tools/eclipse/debug/DebugModeHandler.java +++ b/bundles/io.openliberty.tools.eclipse.ui/src/io/openliberty/tools/eclipse/debug/DebugModeHandler.java @@ -1,5 +1,5 @@ /******************************************************************************* -* Copyright (c) 2022, 2025 IBM Corporation and others. +* Copyright (c) 2022, 2026 IBM Corporation and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at