Skip to content

Commit daf83d5

Browse files
committed
better comments #167
1 parent afe112b commit daf83d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/tracer/traces/FrequencyPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public class FrequencyPanel extends TraceChartPanel {
6363
*/
6464
public FrequencyPanel(final JFrame frame) {
6565
super(frame);
66-
// LinearAxis2 can handle small ranged values (range < 1E-30) correctly, but LinearAxis cannot
66+
// LinearAxis2 can handle small range (range < 1E-30) correctly, but LinearAxis cannot
6767
traceChart = new JChart(
6868
new LinearAxis2(Axis.AT_MAJOR_TICK_PLUS, Axis.AT_MAJOR_TICK_PLUS), new LinearAxis());
6969
traceChartPanel = new JChartPanel(traceChart, "","", "Frequency"); // xAxisTitle, yAxisTitle

src/tracer/traces/RawTracePanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public class RawTracePanel extends TraceChartPanel {
7171
*/
7272
public RawTracePanel(final JFrame frame) {
7373
super(frame);
74-
// LinearAxis2 can handle small ranged values (range < 1E-30) correctly, but LinearAxis cannot
74+
// LinearAxis2 can handle small range (range < 1E-30) correctly, but LinearAxis cannot
7575
traceChart = new JTraceChart(new LinearAxis(Axis.AT_ZERO, Axis.AT_DATA), new LinearAxis2());
7676
chartPanel = new JChartPanel(traceChart, "", "", ""); // xAxisTitle, yAxisTitle
7777
toolBar = createToolBar(currentSettings);

0 commit comments

Comments
 (0)