Skip to content

Commit 770d1a2

Browse files
jbamptonvogella
authored andcommitted
Fix spelling
1 parent ed41e32 commit 770d1a2

File tree

13 files changed

+23
-23
lines changed

13 files changed

+23
-23
lines changed

debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/IDebugPreferenceConstants.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ public interface IDebugPreferenceConstants {
253253
*
254254
* @since 3.1
255255
*/
256-
String PREF_TABLE_RENDERING_PAGE_SIZE = "org.eclispe.debug.ui.memory.pageSize"; //$NON-NLS-1$
256+
String PREF_TABLE_RENDERING_PAGE_SIZE = "org.eclipse.debug.ui.memory.pageSize"; //$NON-NLS-1$
257257

258258
/**
259259
* Default page size when dynamic loading mode is off. This preference is stored
@@ -321,21 +321,21 @@ public interface IDebugPreferenceConstants {
321321
*
322322
* @since 3.3
323323
*/
324-
String PREF_TABLE_RENDERING_PRE_BUFFER_SIZE = "org.eclispe.debug.ui.memory.preBufferSize"; //$NON-NLS-1$
324+
String PREF_TABLE_RENDERING_PRE_BUFFER_SIZE = "org.eclipse.debug.ui.memory.preBufferSize"; //$NON-NLS-1$
325325

326326
/**
327327
* Number of lines to preload after the visible region in the table rendering
328328
*
329329
* @since 3.3
330330
*/
331-
String PREF_TABLE_RENDERING_POST_BUFFER_SIZE = "org.eclispe.debug.ui.memory.postBufferSize"; //$NON-NLS-1$
331+
String PREF_TABLE_RENDERING_POST_BUFFER_SIZE = "org.eclipse.debug.ui.memory.postBufferSize"; //$NON-NLS-1$
332332

333333
/**
334334
* The layout mode in Debug view.
335335
*
336336
* @since 3.5
337337
*/
338-
String DEBUG_VIEW_MODE = "org.eclispe.debug.ui.Debug_view.mode"; //$NON-NLS-1$
338+
String DEBUG_VIEW_MODE = "org.eclipse.debug.ui.Debug_view.mode"; //$NON-NLS-1$
339339
String DEBUG_VIEW_MODE_AUTO = "Debug_view.mode.auto"; //$NON-NLS-1$
340340
String DEBUG_VIEW_MODE_COMPACT = "Debug_view.mode.compact"; //$NON-NLS-1$
341341
String DEBUG_VIEW_MODE_FULL = "Debug_view.mode.full"; //$NON-NLS-1$
@@ -345,14 +345,14 @@ public interface IDebugPreferenceConstants {
345345
*
346346
* @since 3.5
347347
*/
348-
String DEBUG_VIEW_BREADCRUMB_AUTO_EXPAND_DROP_DOWN = "org.eclispe.debug.ui.Debug_view.Breadcrumb.dropDownAutoexpand"; //$NON-NLS-1$
348+
String DEBUG_VIEW_BREADCRUMB_AUTO_EXPAND_DROP_DOWN = "org.eclipse.debug.ui.Debug_view.Breadcrumb.dropDownAutoexpand"; //$NON-NLS-1$
349349

350350
/**
351351
* Perspectives in which the debug toolbar is hidden.
352352
*
353353
* @since 3.8
354354
*/
355-
String DEBUG_VIEW_TOOLBAR_HIDDEN_PERSPECTIVES = "org.eclispe.debug.ui.Debug_view.debug_toolbar_hidden_perspectives"; //$NON-NLS-1$
355+
String DEBUG_VIEW_TOOLBAR_HIDDEN_PERSPECTIVES = "org.eclipse.debug.ui.Debug_view.debug_toolbar_hidden_perspectives"; //$NON-NLS-1$
356356
}
357357

358358

debug/org.eclipse.ui.console/src/org/eclipse/ui/console/IConsolePageParticipant.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* A console page participant is notified of page lifecycle events such as
2121
* creation, activation, deactivation and disposal. A page participant can also
2222
* provide adapters for a page. Participants are contributed via the
23-
* <code>org.eclispe.ui.console.consolePageParticipants</code> extension point.
23+
* <code>org.eclipse.ui.console.consolePageParticipants</code> extension point.
2424
* <p>
2525
* Participant behavior is implementation dependent. For example, a page
2626
* participant could add actions to a console's toolbar by accessing a its

docs/Eclipse_Project_Update_Sites.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This site contains information about the artifacts created by the Eclipse projec
66

77
### Eclipse build repositories
88

9-
The Eclispe project also publish unreleased versions of its artifacts.
9+
The Eclipse project also publish unreleased versions of its artifacts.
1010
Committers and early adopters, [look below for unversioned repositories.](#Non-versioned-repository-URLs)
1111

1212
#### Versioned repository URLs

ua/org.eclipse.ua.tests/non_junit/cheatsheets/tasks/helpA12.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<cheatsheet title="Keyword Index">
1717
<intro>
1818
<description>
19-
Tests for the index view. These tests require org.eclispe.ua.tests to be installed.
19+
Tests for the index view. These tests require org.eclipse.ua.tests to be installed.
2020
</description>
2121
</intro>
2222
<item title="Test Index View" dialog="false" skip="false">

ua/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/IntroPlugin.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,15 @@ public static IIntroPart showIntro(boolean standby) {
138138

139139
/**
140140
* Returns the standby state of the Intro Part. If the intro is closed,
141-
* retruns false.
141+
* returns false.
142142
*/
143143
public static boolean isIntroStandby() {
144144
return PlatformUI.getWorkbench().getIntroManager().isIntroStandby(
145145
getIntro());
146146
}
147147

148148
/**
149-
* Sets the standby state of the Intro Part. If the intro is closed, retruns
149+
* Sets the standby state of the Intro Part. If the intro is closed, returns
150150
* false.
151151
*/
152152
public static void setIntroStandby(boolean standby) {
@@ -157,7 +157,7 @@ public static void setIntroStandby(boolean standby) {
157157

158158
/**
159159
* Returns the standby state of the Intro Part. If the intro is closed,
160-
* retruns false.
160+
* returns false.
161161
*/
162162
public static boolean closeIntro() {
163163
// Relies on Workbench.

ua/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/AbstractIntroElement.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ public Element getElement() {
235235
}
236236

237237
/**
238-
* DOM getAttribute retruns an empty string (not null) if attribute is not
238+
* DOM getAttribute returns an empty string (not null) if attribute is not
239239
* defined. Override this behavior to be consistent with Intro Model, and
240240
* IConfiguration element.
241241
*/
@@ -305,10 +305,10 @@ public Bundle getBundle() {
305305
* <p>
306306
* Rules:
307307
* <ul>
308-
* <li>For the model root, it retruns null.</li>
308+
* <li>For the model root, it returns null.</li>
309309
* <li>For the introPart presentation it returns a model root.</li>
310310
* <li>For Pages, it returns an intro model root.</li>
311-
* <li>For all other elements, it retruns a subclass of abstract container.
311+
* <li>For all other elements, it returns a subclass of abstract container.
312312
* </li>
313313
* <li>for divs that are children of configs (shared divs), it returns the
314314
* holding model root.</li>

ua/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/AbstractTextElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public abstract class AbstractTextElement extends AbstractIntroContainer {
2929
}
3030

3131
/**
32-
* Retruns the intro text element embedded in this element.
32+
* Returns the intro text element embedded in this element.
3333
*/
3434
public IntroText getIntroText() {
3535
AbstractIntroElement[] children = getChildren();

ua/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/IntroHTML.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public class IntroHTML extends AbstractTextElement {
6464
}
6565

6666
/**
67-
* Retruns the intro image element embedded in this element.
67+
* Returns the intro image element embedded in this element.
6868
*/
6969
private IntroImage getIntroImage(Element element, String base) {
7070
try {

ua/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/IntroLink.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public String getUrl() {
7979
}
8080

8181
/**
82-
* Retruns an IntroURL instance if link has a valid intro url. Returns null
82+
* Returns an IntroURL instance if link has a valid intro url. Returns null
8383
* otherwise.
8484
*
8585
* @return Returns the introURL.

ua/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/IntroPartPresentation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ public void createPartControl(Composite parent) {
263263
}
264264

265265
/**
266-
* Retruns a list of valid implementation elements of the config. Choose correct implementation
266+
* Returns a list of valid implementation elements of the config. Choose correct implementation
267267
* element based on os atrributes. Rules: get current OS, choose first contributrion, with os
268268
* that matches OS. Otherwise, choose first contribution with no os. Returns null if no valid
269269
* implementation is found.

ua/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/url/IntroURLParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public IntroURL getIntroURL() {
135135

136136

137137
/**
138-
* Retruns the path attribute of the passed URL, stripped out of the leading
138+
* Returns the path attribute of the passed URL, stripped out of the leading
139139
* "/". Returns null if the url does not have a path.
140140
*/
141141
private String getPathAsAction(URL url) {
@@ -148,7 +148,7 @@ private String getPathAsAction(URL url) {
148148
}
149149

150150
/**
151-
* Retruns the Query part of the URL as an instance of a Properties class.
151+
* Returns the Query part of the URL as an instance of a Properties class.
152152
*/
153153
public Properties getQueryParameters(URL url) {
154154
// parser all query parameters.

ua/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/util/FindSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static URL find(Bundle bundle, IPath path) {
5353
}
5454

5555
/**
56-
* Proposed API for Platform in Eclispe 3.2.
56+
* Proposed API for Platform in Eclipse 3.2.
5757
* Same as @link #find(Bundle, IPath) except multiple entries can be
5858
* returned if more than one entry matches the path in the host and
5959
* any of its fragments.

update/org.eclipse.update.configurator/src/org/eclipse/update/configurator/ConfiguratorUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public static IPlatformConfiguration getPlatformConfiguration(URL url, URL loc)
107107
}
108108

109109
/**
110-
* @return the URL of this eclispe installation
110+
* @return the URL of this eclipse installation
111111
*/
112112
public static URL getInstallURL() {
113113
return Utils.getInstallURL();

0 commit comments

Comments
 (0)