From: THE-COB Date: Wed, 26 Feb 2020 21:23:34 +0000 (-0500) Subject: Fixed spelling error: "condidence" to "confidence" X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=1a8ce101aa1787c295dc89dbbdcb729e521fea87;p=aubio.git Fixed spelling error: "condidence" to "confidence" --- diff --git a/python/demos/demo_pitch.py b/python/demos/demo_pitch.py index 555a30e6..b85d2a0d 100755 --- a/python/demos/demo_pitch.py +++ b/python/demos/demo_pitch.py @@ -97,7 +97,7 @@ ax3.plot(times, confidences) # draw a line at tolerance ax3.plot(times, [tolerance]*len(confidences)) ax3.axis( xmin = times[0], xmax = times[-1]) -ax3.set_ylabel('condidence') +ax3.set_ylabel('confidence') set_xlabels_sample2time(ax3, times[-1], samplerate) plt.show() #plt.savefig(os.path.basename(filename) + '.svg')