Skip to content

Commit 016a5fd

Browse files
elsazacvogella
authored andcommitted
Fix Javdoc related errors
1 parent 25b727b commit 016a5fd

File tree

13 files changed

+19
-19
lines changed

13 files changed

+19
-19
lines changed

ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/AntHomeClasspathEntry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public int hashCode() {
177177
* Sets the ant home to use.
178178
*
179179
* @param path
180-
* path to toor of an ant home installation
180+
* path to root of an ant home installation
181181
*/
182182
public void setAntHome(String path) {
183183
antHomeLocation = path;

debug/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/launchConfigurations/ExternalToolsBuildTab.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -330,10 +330,10 @@ public static IProject[] getBuildProjects(ILaunchConfiguration configuration, St
330330
}
331331

332332
/**
333-
* Whether referenced projects should be considered when building. Only valid
334-
* when a set of projects is to be built.
333+
* Whether referenced projects should be considered when building. Only
334+
* valid when a set of projects is to be built.
335335
*
336-
* @return whether referenced projects should be considerd when building
336+
* @return whether referenced projects should be considered when building
337337
* @throws CoreException if unable to access the associated attribute
338338
*/
339339
public static boolean isIncludeReferencedProjects(ILaunchConfiguration configuration, String includeReferencedProjectsId) throws CoreException {

debug/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/variables/BuildFilesResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public String resolveValue(IDynamicVariable variable, String argument) throws Co
6868
deltas |= IResourceDelta.REMOVED;
6969
}
7070

71-
// Check wether to include files and/or directories
71+
// Check whether to include files and/or directories
7272
if (argument.indexOf(ARG_DIRS) > -1)
7373
{
7474
dirs = true;

debug/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/variables/BuildProjectResolver.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ protected void abort(String message, Throwable exception) throws CoreException {
5353
}
5454

5555
/**
56-
* Returns an expression used to reference the given variable and optional argument.
57-
* For example, <code>${var_name:arg}</code>.
56+
* Returns an expression used to reference the given variable and optional
57+
* argument. For example, <code>${var_name:arg}</code>.
5858
*
5959
* @param variable referenced variable
6060
* @param argument referenced argument or <code>null</code>
61-
* @return vraiable reference expression
61+
* @return variable reference expression
6262
*/
6363
protected String getReferenceExpression(IDynamicVariable variable, String argument) {
6464
StringBuilder reference = new StringBuilder();

debug/org.eclipse.ui.externaltools/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %Plugin.name
44
Bundle-SymbolicName: org.eclipse.ui.externaltools; singleton:=true
5-
Bundle-Version: 3.6.700.qualifier
5+
Bundle-Version: 3.6.800.qualifier
66
Bundle-Activator: org.eclipse.ui.externaltools.internal.model.ExternalToolsPlugin
77
Bundle-Vendor: %Plugin.providerName
88
Bundle-Localization: plugin

runtime/bundles/org.eclipse.e4.core.services/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Bundle-SymbolicName: org.eclipse.e4.core.services;singleton:=true
44
Bundle-Name: %pluginName
55
Bundle-Vendor: %providerName
66
Bundle-Localization: plugin
7-
Bundle-Version: 2.5.200.qualifier
7+
Bundle-Version: 2.5.300.qualifier
88
Bundle-ActivationPolicy: lazy
99
Bundle-RequiredExecutionEnvironment: JavaSE-17
1010
Import-Package: jakarta.annotation;version="[2.0.0,3.0.0)",

runtime/bundles/org.eclipse.e4.core.services/src/org/eclipse/e4/core/internal/services/ResourceBundleTranslationProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ private String translate_rec(String key) {
9797
result = translate_rec(underscorify(key));
9898
}
9999

100-
// if no succes, try to de-underscorify and recurse
100+
// if no success, try to de-underscorify and recurse
101101
if (result == null && key.contains("_")) { //$NON-NLS-1$
102102
result = translate_rec(key.replace('_', '.'));
103103
}

ua/org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/IUniversalIntroConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public interface IUniversalIntroConstants {
4747
// convention: actual string value is class name.
4848
String INTRO_LINK = "IntroLink"; //$NON-NLS-1$
4949

50-
// key to retrive page sub-title from PageContentForm
50+
// key to retrieve page sub-title from PageContentForm
5151
String PAGE_SUBTITLE = "PageSubtitle"; //$NON-NLS-1$
5252

5353

ua/org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/util/Log.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public class Log implements IUniversalIntroConstants {
3434

3535
/**
3636
* This MUST be set to <b>false </b> in production. <br>
37-
* Used to compile out developement debug messages. <br>
38-
* Compiler compiles out code warpped wit this flag as an optimization.
37+
* Used to compile out development debug messages. <br>
38+
* Compiler compiles out code wrapped with this flag as an optimization.
3939
*/
4040
public static final boolean DEBUG = false;
4141

update/org.eclipse.update.configurator/src/org/eclipse/update/internal/configurator/SiteEntry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ private void detectUnpackedPlugin(File file, boolean compareTimeStamps) {
444444
// reliable,
445445
// or that the user manually modified an existing plugin,
446446
// so
447-
// the apparently modifed plugin may actually be configured
447+
// the apparently modified plugin may actually be configured
448448
// already.
449449
// We will need to double check for this. END to do.
450450
if (compareTimeStamps

0 commit comments

Comments
 (0)