Skip to content

Commit 72b81ed

Browse files
jbamptonakurtakov
authored andcommitted
Fix spelling
1 parent cca64bb commit 72b81ed

File tree

19 files changed

+31
-31
lines changed

19 files changed

+31
-31
lines changed

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/ExecutionException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import org.eclipse.core.commands.common.CommandException;
1717

1818
/**
19-
* Signals that an exception occured during the execution of a command.
19+
* Signals that an exception occurred during the execution of a command.
2020
* <p>
2121
* This class is not intended to be extended by clients.
2222
* </p>

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/SerializationException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import org.eclipse.core.commands.common.CommandException;
1717

1818
/**
19-
* Signals that an exception occured while serializing a
19+
* Signals that an exception occurred while serializing a
2020
* {@link ParameterizedCommand} to a string or deserializing a String to a
2121
* {@link ParameterizedCommand}.
2222
* <p>

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/common/CommandException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
package org.eclipse.core.commands.common;
1515

1616
/**
17-
* Signals that an exception occured within the command architecture.
17+
* Signals that an exception occurred within the command architecture.
1818
* <p>
1919
* This class is not intended to be extended by clients.
2020
* </p>

bundles/org.eclipse.jface/src/org/eclipse/jface/bindings/BindingManagerEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public final class BindingManagerEvent extends AbstractBitSetEvent {
9191
* @param previousTriggersByParameterizedCommand
9292
* The map of triggers (<code>TriggerSequence</code>) by
9393
* fully-parameterized command (<code>ParameterizedCommand</code>)
94-
* before the change occured. This map may be <code>null</code>
94+
* before the change occurred. This map may be <code>null</code>
9595
* or empty.
9696
* @param activeSchemeChanged
9797
* true, iff the active scheme changed.

bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/IDialogBlockedHandler.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/**
2222
* The IDialogBlockedHandler is the handler used by JFace to provide extra
23-
* information when a blocking has occured. There is one static instance of this
23+
* information when a blocking has occurred. There is one static instance of this
2424
* class used by WizardDialog and ModalContext.
2525
*
2626
* @see org.eclipse.core.runtime.IProgressMonitor#clearBlocked()
@@ -36,7 +36,7 @@ public interface IDialogBlockedHandler {
3636
public void clearBlocked();
3737

3838
/**
39-
* A blockage has occured. Show the blockage and
39+
* A blockage has occurred. Show the blockage and
4040
* forward any actions to blockingMonitor.
4141
* <b>NOTE:</b> This will open any blocked notification immediately
4242
* even if there is a modal shell open.
@@ -55,7 +55,7 @@ public void showBlocked(Shell parentShell, IProgressMonitor blocking,
5555
IStatus blockingStatus, String blockedName);
5656

5757
/**
58-
* A blockage has occured. Show the blockage when there is
58+
* A blockage has occurred. Show the blockage when there is
5959
* no longer any modal shells in the UI and forward any actions
6060
* to blockingMonitor.
6161
*

bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/WebBrowserPreferencePage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,10 +397,10 @@ public void keyPressed(KeyEvent e) {
397397
try {
398398
pm.run(true, true, r);
399399
} catch (InvocationTargetException ex) {
400-
Trace.trace(Trace.SEVERE, "Invocation Exception occured running monitor: " //$NON-NLS-1$
400+
Trace.trace(Trace.SEVERE, "Invocation Exception occurred running monitor: " //$NON-NLS-1$
401401
+ ex);
402402
} catch (InterruptedException ex) {
403-
Trace.trace(Trace.SEVERE, "Interrupted exception occured running monitor: " //$NON-NLS-1$
403+
Trace.trace(Trace.SEVERE, "Interrupted exception occurred running monitor: " //$NON-NLS-1$
404404
+ ex);
405405
return;
406406
}

bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/events/HyperlinkEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public String getLabel() {
6363
}
6464
/**
6565
* Returns the value of the keyboard state mask present when
66-
* the event occured, or SWT.NULL for no modifiers.
66+
* the event occurred, or SWT.NULL for no modifiers.
6767
* @return the keyboard state mask or <code>SWT.NULL</code>.
6868
*/
6969
public int getStateMask() {

bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceWorkingSetPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ private void handleCheckStateChange(final CheckStateChangedEvent event) {
312312
}
313313

314314
/**
315-
* Displays an error message when a CoreException occured.
315+
* Displays an error message when a CoreException occurred.
316316
*
317317
* @param exception the CoreException
318318
* @param shell parent shell for the message box

bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardProjectsImportPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1373,7 +1373,7 @@ private IStatus createExistingProject(final ProjectRecord record, IProgressMonit
13731373
// location for this workspace
13741374
URI locationURI = record.description.getLocationURI();
13751375
// if location is null, project already exists in this location or
1376-
// some error condition occured.
1376+
// some error condition occurred.
13771377
if (locationURI != null) {
13781378
// validate the location of the project being copied
13791379
IStatus result = ResourcesPlugin.getWorkspace().validateProjectLocationURI(project,

bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/TextActionHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ public void addText(Text textControl) {
365365

366366
// We really want a selection listener but it is not supported so we
367367
// use a key listener and a mouse listener to know when selection changes
368-
// may have occured
368+
// may have occurred
369369
textControl.addKeyListener(keyAdapter);
370370
textControl.addMouseListener(mouseAdapter);
371371

0 commit comments

Comments
 (0)