From 331ac37505b2c4422b9f949e116e5d13064d2088 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 15 Jan 2016 12:50:09 -0700 Subject: [PATCH] applets/plot_hist: better help message --- artiq/applets/plot_hist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/applets/plot_hist.py b/artiq/applets/plot_hist.py index cfaf6a36c..54f459d91 100755 --- a/artiq/applets/plot_hist.py +++ b/artiq/applets/plot_hist.py @@ -32,7 +32,7 @@ class HistogramPlot(pyqtgraph.PlotWidget): def main(): applet = SimpleApplet(HistogramPlot) applet.add_dataset("y", "Y values") - applet.add_dataset("x", "X values", required=False) + applet.add_dataset("x", "Bin boundaries", required=False) applet.run() if __name__ == "__main__":