We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f7acda commit 5d04b65Copy full SHA for 5d04b65
src/main/java/org/scijava/widget/WidgetModel.java
@@ -176,10 +176,10 @@ public void setValue(final Object value) {
176
return; // no change
177
}
178
179
- // Pass the vale through the convertService
+ // Pass the value through the convertService
180
convertedInput = convertService.convert(value, item.getType());
181
182
- // If we get a different (covnerted) value back, cache it weakly.
+ // If we get a different (converted) value back, cache it weakly.
183
if (convertedInput != value) {
184
convertedObjects.put(value, convertedInput);
185
0 commit comments