Skip to content

Commit 5d04b65

Browse files
committed
WidgetModel: typo fixes
Fixed typos in the WidgetModel javadoc.
1 parent 6f7acda commit 5d04b65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/scijava/widget/WidgetModel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,10 @@ public void setValue(final Object value) {
176176
return; // no change
177177
}
178178

179-
// Pass the vale through the convertService
179+
// Pass the value through the convertService
180180
convertedInput = convertService.convert(value, item.getType());
181181

182-
// If we get a different (covnerted) value back, cache it weakly.
182+
// If we get a different (converted) value back, cache it weakly.
183183
if (convertedInput != value) {
184184
convertedObjects.put(value, convertedInput);
185185
}

0 commit comments

Comments
 (0)