From 57889270c0b9b8085b417ded05f9fb1af9917efb Mon Sep 17 00:00:00 2001 From: David Bau Date: Sat, 2 Apr 2022 18:24:42 -0400 Subject: [PATCH] Fix typo. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index abac045..ed5d364 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ def how_to_draw_my_plot(fig, amp=1.0, freq=1.0): plot = PlotWidget(how_to_draw_my_plot, figsize=(5, 5)) ra = Range(min=0.0, max=2.0, step=0.1, value=plot.prop('amp')) -rf = Range(min=0.1, max=20.0, step=0.1, value=plot.prop('freq') +rf = Range(min=0.1, max=20.0, step=0.1, value=plot.prop('freq')) show([plot, [show.style(textAlign='right'), 'Amp', ra, show.style(textAlign='right'), 'Freq', rf]]) ```