Skip to content

Commit 979522d

Browse files
jbamptonmerks
authored andcommitted
docs: fix spelling in Java example code comments
1 parent 8f3fd02 commit 979522d

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/ProgressBarTab.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ int getDefaultMaximum () {
141141
}
142142

143143
/**
144-
* Gets the default minimim of the "Example" widgets.
144+
* Gets the default minimum of the "Example" widgets.
145145
*/
146146
@Override
147147
int getDefaultMinimum () {
@@ -166,7 +166,7 @@ void setWidgetMaximum () {
166166
}
167167

168168
/**
169-
* Sets the minimim of the "Example" widgets.
169+
* Sets the minimum of the "Example" widgets.
170170
*/
171171
@Override
172172
void setWidgetMinimum () {

examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/RangeTab.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ void setExampleWidgetState () {
170170
abstract int getDefaultMaximum ();
171171

172172
/**
173-
* Gets the default minimim of the "Example" widgets.
173+
* Gets the default minimum of the "Example" widgets.
174174
*/
175175
abstract int getDefaultMinimum ();
176176

@@ -185,7 +185,7 @@ void setExampleWidgetState () {
185185
abstract void setWidgetMaximum ();
186186

187187
/**
188-
* Sets the minimim of the "Example" widgets.
188+
* Sets the minimum of the "Example" widgets.
189189
*/
190190
abstract void setWidgetMinimum ();
191191

examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/ScaleTab.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ int getDefaultMaximum () {
170170
}
171171

172172
/**
173-
* Gets the default minimim of the "Example" widgets.
173+
* Gets the default minimum of the "Example" widgets.
174174
*/
175175
@Override
176176
int getDefaultMinimum () {
@@ -207,15 +207,15 @@ void setWidgetIncrement () {
207207
}
208208

209209
/**
210-
* Sets the minimim of the "Example" widgets.
210+
* Sets the minimum of the "Example" widgets.
211211
*/
212212
@Override
213213
void setWidgetMaximum () {
214214
scale1.setMaximum (maximumSpinner.getSelection ());
215215
}
216216

217217
/**
218-
* Sets the minimim of the "Example" widgets.
218+
* Sets the minimum of the "Example" widgets.
219219
*/
220220
@Override
221221
void setWidgetMinimum () {

examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/SliderTab.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ int getDefaultMaximum () {
195195
}
196196

197197
/**
198-
* Gets the default minimim of the "Example" widgets.
198+
* Gets the default minimum of the "Example" widgets.
199199
*/
200200
@Override
201201
int getDefaultMinimum () {
@@ -239,15 +239,15 @@ void setWidgetIncrement () {
239239
}
240240

241241
/**
242-
* Sets the minimim of the "Example" widgets.
242+
* Sets the minimum of the "Example" widgets.
243243
*/
244244
@Override
245245
void setWidgetMaximum () {
246246
slider1.setMaximum (maximumSpinner.getSelection ());
247247
}
248248

249249
/**
250-
* Sets the minimim of the "Example" widgets.
250+
* Sets the minimum of the "Example" widgets.
251251
*/
252252
@Override
253253
void setWidgetMinimum () {

examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/SpinnerTab.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ int getDefaultMaximum () {
244244
}
245245

246246
/**
247-
* Gets the default minimim of the "Example" widgets.
247+
* Gets the default minimum of the "Example" widgets.
248248
*/
249249
@Override
250250
int getDefaultMinimum () {
@@ -288,15 +288,15 @@ void setWidgetIncrement () {
288288
}
289289

290290
/**
291-
* Sets the minimim of the "Example" widgets.
291+
* Sets the minimum of the "Example" widgets.
292292
*/
293293
@Override
294294
void setWidgetMaximum () {
295295
spinner1.setMaximum (maximumSpinner.getSelection ());
296296
}
297297

298298
/**
299-
* Sets the minimim of the "Example" widgets.
299+
* Sets the minimum of the "Example" widgets.
300300
*/
301301
@Override
302302
void setWidgetMinimum () {

0 commit comments

Comments
 (0)