Skip to content

Commit

Permalink
better comments #167
Browse files Browse the repository at this point in the history
  • Loading branch information
walterxie committed Feb 9, 2022
1 parent afe112b commit daf83d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tracer/traces/FrequencyPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class FrequencyPanel extends TraceChartPanel {
*/
public FrequencyPanel(final JFrame frame) {
super(frame);
// LinearAxis2 can handle small ranged values (range < 1E-30) correctly, but LinearAxis cannot
// LinearAxis2 can handle small range (range < 1E-30) correctly, but LinearAxis cannot
traceChart = new JChart(
new LinearAxis2(Axis.AT_MAJOR_TICK_PLUS, Axis.AT_MAJOR_TICK_PLUS), new LinearAxis());
traceChartPanel = new JChartPanel(traceChart, "","", "Frequency"); // xAxisTitle, yAxisTitle
Expand Down
2 changes: 1 addition & 1 deletion src/tracer/traces/RawTracePanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public class RawTracePanel extends TraceChartPanel {
*/
public RawTracePanel(final JFrame frame) {
super(frame);
// LinearAxis2 can handle small ranged values (range < 1E-30) correctly, but LinearAxis cannot
// LinearAxis2 can handle small range (range < 1E-30) correctly, but LinearAxis cannot
traceChart = new JTraceChart(new LinearAxis(Axis.AT_ZERO, Axis.AT_DATA), new LinearAxis2());
chartPanel = new JChartPanel(traceChart, "", "", ""); // xAxisTitle, yAxisTitle
toolBar = createToolBar(currentSettings);
Expand Down

0 comments on commit daf83d5

Please sign in to comment.