fix typos, spelling (#2419)
This commit is contained in:
parent
b2232daa10
commit
cffd0e397f
|
@ -164,7 +164,7 @@ public class EcuStimulator {
|
|||
double advance = advances.get(MEASURES / 2);
|
||||
|
||||
// if (dwell > 40)
|
||||
// throw new IllegalStateException("Unexpected value, how comes? " + dwell);
|
||||
// throw new IllegalStateException("Unexpected value, how come? " + dwell);
|
||||
|
||||
log("Stimulator result: " + rpm + "@" + engineLoad + ": " + dwell + ", adv=" + advance);
|
||||
|
||||
|
|
|
@ -112,7 +112,7 @@ public class SensorSnifferPane {
|
|||
|
||||
lowerPanel.add(new EnumConfigField(uiContext, Fields.SENSORCHARTMODE, "Mode").getContent());
|
||||
lowerPanel.add(new ConfigField(uiContext, Fields.SENSORCHARTFREQUENCY, "Every XXX engine cycles").getContent());
|
||||
lowerPanel.add(new ConfigField(uiContext, Fields.SENSORSNIFFERRPMTHRESHOLD, "RPM threashold").getContent());
|
||||
lowerPanel.add(new ConfigField(uiContext, Fields.SENSORSNIFFERRPMTHRESHOLD, "RPM threshold").getContent());
|
||||
}
|
||||
|
||||
private void setPaused(JButton pauseButton, boolean isPaused) {
|
||||
|
|
|
@ -134,7 +134,7 @@ public class EngineSnifferPanel {
|
|||
lowerButtons.add(new BitConfigField(uiContext, Fields.ISENGINECHARTENABLED, "Collect Engine Data").getContent());
|
||||
lowerButtons.add(new ConfigField(uiContext, Fields.SENSORCHARTFREQUENCY, "Frequency").getContent());
|
||||
lowerButtons.add(new ConfigField(uiContext, Fields.ENGINECHARTSIZE, "Engine Sniffer size").getContent());
|
||||
lowerButtons.add(new ConfigField(uiContext, Fields.ENGINESNIFFERRPMTHRESHOLD, "RPM threashold").getContent());
|
||||
lowerButtons.add(new ConfigField(uiContext, Fields.ENGINESNIFFERRPMTHRESHOLD, "RPM threshold").getContent());
|
||||
bottomPanel.add(lowerButtons, BorderLayout.NORTH);
|
||||
}
|
||||
|
||||
|
|
|
@ -79,7 +79,7 @@ public class EtbMonteCarloSequence {
|
|||
boolean shouldRun = currentValue < bestResultSoFar;
|
||||
if (!shouldRun) {
|
||||
MessagesCentral.getInstance().postMessage(EtbMonteCarloSequence.class,
|
||||
"Two much error accumulated, aborting! " + currentValue + " > " + bestResultSoFar);
|
||||
"Too much error accumulated, aborting! " + currentValue + " > " + bestResultSoFar);
|
||||
|
||||
}
|
||||
return shouldRun;
|
||||
|
|
Loading…
Reference in New Issue