Skip to content

Commit 7a63151

Browse files
jbamptonakurtakov
authored andcommitted
Fix spelling
1 parent 57dfd00 commit 7a63151

File tree

27 files changed

+41
-41
lines changed

27 files changed

+41
-41
lines changed

debug/org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/AbstractSourceLookupDirector.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public void handleException(Throwable exception) {
119119
/**
120120
* Returns any exception that occurred during source lookup.
121121
*
122-
* @return the (any) exception that occured during source lookup
122+
* @return the (any) exception that occurred during source lookup
123123
*/
124124
public Throwable getException() {
125125
return fException;

resources/bundles/org.eclipse.core.tools.resources/src/org/eclipse/core/tools/resources/markers/MarkerView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ protected void findResourceMarkers(IResource resource) {
342342
warningMsg = "No markers found for: " + resource.getFullPath();
343343
}
344344
} catch (CoreException e) {
345-
errorMsg = "Exception" + e.getMessage() + " occured obtaining markers for" + resource.getFullPath();
345+
errorMsg = "Exception" + e.getMessage() + " occurred obtaining markers for" + resource.getFullPath();
346346
return;
347347
}
348348
}

resources/bundles/org.eclipse.core.tools.resources/src/org/eclipse/core/tools/resources/markers/ReadOnlyMarkerPropertySource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public Object getPropertyValue(Object id) {
102102
return marker.getAttribute(name);
103103
} catch (CoreException e) {
104104
ILog.of(ReadOnlyMarkerPropertySource.class).log(e.getStatus());
105-
return "exception occured accessing: " + name;
105+
return "exception occurred accessing: " + name;
106106
}
107107
}
108108

resources/tests/org.eclipse.core.tests.resources/src/org/eclipse/core/tests/internal/localstore/FileSystemResourceManagerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ protected void write(final IFile file, final InputStream contents, final boolean
451451
} catch (Throwable t) {
452452
// Bug 541493: we see unlikely stack traces reported by JUnit here, log the
453453
// exceptions in case JUnit filters stack frames
454-
String errorMessage = "exception occured during write of file: " + file;
454+
String errorMessage = "exception occurred during write of file: " + file;
455455
IStatus errorStatus = new Status(IStatus.ERROR, ResourcesPlugin.PI_RESOURCES, errorMessage, t);
456456
ResourcesPlugin.getPlugin().getLog().log(errorStatus);
457457
throw t;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public <M> M getMessageInstance(final Locale locale, final Class<M> messages,
156156
* bundle with a given locale.
157157
*
158158
* @return The created instance of the given messages class and {@link Locale} or
159-
* <code>null</code> if an error occured on creating the instance.
159+
* <code>null</code> if an error occurred on creating the instance.
160160
*/
161161
@SuppressWarnings("deprecation")
162162
private <M> M createInstance(Locale locale, Class<M> messages, Message annotation,

runtime/tests/org.eclipse.core.tests.runtime/src/org/eclipse/core/tests/runtime/AutomatedRuntimeTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
XmlProcessorFactoryTest.class, //
3232
/*
3333
* Intentional the LAST TEST in the list to let
34-
* JobEventTest.testNoTimeoutOccured() verify the other tests:
34+
* JobEventTest.testNoTimeoutOccurred() verify the other tests:
3535
*/
3636
AllJobTests.class, //
3737
})

runtime/tests/org.eclipse.core.tests.runtime/src/org/eclipse/core/tests/runtime/jobs/AbstractJobTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public static long now() {
8383

8484
@BeforeEach
8585
public void setProgressProvider() throws Exception {
86-
assertNoTimeoutOccured();
86+
assertNoTimeoutOccurred();
8787
manager = Job.getJobManager();
8888
progressProvider = new FussyProgressProvider();
8989
manager.setProgressProvider(progressProvider);
@@ -93,10 +93,10 @@ public void setProgressProvider() throws Exception {
9393
public void resetProgressProvider() throws Exception {
9494
progressProvider.sanityCheck();
9595
Job.getJobManager().setProgressProvider(null);
96-
assertNoTimeoutOccured();
96+
assertNoTimeoutOccurred();
9797
}
9898

99-
protected final void assertNoTimeoutOccured() throws Exception {
99+
protected final void assertNoTimeoutOccurred() throws Exception {
100100
int jobListenerTimeout = JobListeners.getJobListenerTimeout();
101101
JobListeners.resetJobListenerTimeout();
102102
int defaultTimeout = JobListeners.getJobListenerTimeout();

runtime/tests/org.eclipse.core.tests.runtime/src/org/eclipse/core/tests/runtime/jobs/AllJobTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
GithubBug_193.class, //
4848
WorkerPoolTest.class, //
4949
/*
50-
* Intentional the LAST TEST in the list to testNoTimeoutOccured() in the other
50+
* Intentional the LAST TEST in the list to testNoTimeoutOccurred() in the other
5151
* tests:
5252
*/
5353
JobEventTest.class, //

runtime/tests/org.eclipse.core.tests.runtime/src/org/eclipse/core/tests/runtime/jobs/JobEventTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ public void run() {
433433
final int DEADLOCK_TIMEOUT = 250;
434434
final int ABORT_TEST_TIMEOUT = 60_000;
435435
try {
436-
assertNoTimeoutOccured(); // before changing timeout
436+
assertNoTimeoutOccurred(); // before changing timeout
437437
JobListeners.setJobListenerTimeout(DEADLOCK_TIMEOUT);
438438
threadDeadlockingWithJobListener.start();
439439
jobWithListener.schedule();

team/bundles/org.eclipse.compare/compare/org/eclipse/compare/package.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ <h2>
2222
A <b>CompareEditorInput</b> runs a (potentially lengthy) compare operation
2323
under progress monitor control, creates a UI for drilling-down into the
2424
compare results, tracks the dirty state of the result in case of merge,
25-
and saves any changes that occured during a merge.
25+
and saves any changes that occurred during a merge.
2626
<p>
2727

2828
The <b>NavigationAction</b> is used to navigate (step) through the individual

0 commit comments

Comments
 (0)