mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-26 20:54:22 +01:00
Fix typo in string
This commit is contained in:
parent
08ea1cc481
commit
db872fc81a
@ -281,7 +281,7 @@ public class SerialUploader extends Uploader {
|
|||||||
|
|
||||||
TargetPlatform targetPlatform = BaseNoGui.getTargetPlatform();
|
TargetPlatform targetPlatform = BaseNoGui.getTargetPlatform();
|
||||||
if (targetPlatform == null) {
|
if (targetPlatform == null) {
|
||||||
throw new RunnerException(tr("Gould not load platform for programmer. Ensure programmer selection is correct for the board."), false);
|
throw new RunnerException(tr("Could not load platform for programmer. Ensure programmer selection is correct for the board."), false);
|
||||||
}
|
}
|
||||||
String programmer = PreferencesData.get("programmer");
|
String programmer = PreferencesData.get("programmer");
|
||||||
if (programmer.contains(":")) {
|
if (programmer.contains(":")) {
|
||||||
@ -290,7 +290,7 @@ public class SerialUploader extends Uploader {
|
|||||||
programmer = split[1];
|
programmer = split[1];
|
||||||
}
|
}
|
||||||
if (programmer == null) {
|
if (programmer == null) {
|
||||||
throw new RunnerException(tr("Gould not load programmer. Ensure programmer selection is correct for the board."), false);
|
throw new RunnerException(tr("Could not load programmer. Ensure programmer selection is correct for the board."), false);
|
||||||
}
|
}
|
||||||
|
|
||||||
PreferencesMap prefs = PreferencesData.getMap();
|
PreferencesMap prefs = PreferencesData.getMap();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user