From 43661482ca14298f6b7e0671cff409da05d42042 Mon Sep 17 00:00:00 2001 From: Nicolas Pinto Date: Sun, 22 May 2011 20:23:23 -0700 Subject: [PATCH] Fix a small typo in mlab.specgram's docstring. --- lib/matplotlib/mlab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/mlab.py b/lib/matplotlib/mlab.py index 305ec6356e2d..21d89140b42e 100644 --- a/lib/matplotlib/mlab.py +++ b/lib/matplotlib/mlab.py @@ -426,7 +426,7 @@ def specgram(x, NFFT=256, Fs=2, detrend=detrend_none, window=window_hanning, noverlap=128, pad_to=None, sides='default', scale_by_freq=None): """ Compute a spectrogram of data in *x*. Data are split into *NFFT* - length segements and the PSD of each section is computed. The + length segments and the PSD of each section is computed. The windowing function *window* is applied to each segment, and the amount of overlap of each segment is specified with *noverlap*.