Skip to content

Commit b282e2a

Browse files
author
Federico Fissore
committed
Fixed typo
1 parent 80fa345 commit b282e2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ public void onRemovePressed(final ContributedLibrary lib) {
259259
boolean managedByIndex = indexer.getIndex().getLibraries().contains(lib);
260260

261261
if (!managedByIndex) {
262-
int chosenOption = JOptionPane.showConfirmDialog(this, _("This library is not listed on Library Manager. You won't be able to resinstall it from here.\nAre you sure you want to delete it?"), _("Please confirm library deletion"), JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE);
262+
int chosenOption = JOptionPane.showConfirmDialog(this, _("This library is not listed on Library Manager. You won't be able to reinstall it from here.\nAre you sure you want to delete it?"), _("Please confirm library deletion"), JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE);
263263
if (chosenOption != JOptionPane.YES_OPTION) {
264264
return;
265265
}

0 commit comments

Comments
 (0)