GT-3220 - fixed typo (fixes #1114, closes #1131).

This commit is contained in:
dragonmacher 2019-10-07 13:52:45 -04:00 committed by Ryan Kurtz
parent 28a09b6468
commit ce4ef3c94d
2 changed files with 2 additions and 2 deletions

View file

@ -126,7 +126,7 @@ class ExtensionTableModel extends ThreadedTableModel<ExtensionDetails, List<Exte
ResourceFile installDir = Application.getApplicationLayout().getExtensionInstallationDir();
if (!installDir.canWrite()) {
Msg.showError(this, null, "Permissions Error",
"Cannot install/uninstall extensions: Invalid write permissions on installion directory.\n" +
"Cannot install/uninstall extensions: Invalid write permissions on installation directory.\n" +
"See the \"Ghidra Extension Notes\" section of the Ghidra Installation Guide for more information.");
return;
}

View file

@ -126,7 +126,7 @@ public class ExtensionTableProvider extends DialogComponentProvider {
Application.getApplicationLayout().getExtensionInstallationDir();
if (!installDir.canWrite()) {
Msg.showError(this, null, "Permissions Error",
"Cannot install/uninstall extensions: Invalid write permissions on installion directory.\n" +
"Cannot install/uninstall extensions: Invalid write permissions on installation directory.\n" +
"See the \"Ghidra Extension Notes\" section of the Ghidra Installation Guide for more information.");
return;
}