From a17af2a80551c8804aac9553ff35a47f43321967 Mon Sep 17 00:00:00 2001 From: Aurelius Prochazka Date: Mon, 4 Apr 2016 16:17:12 -0700 Subject: [PATCH] Small error in example code, probably from an older version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4368692e..a5273ed4 100644 --- a/README.md +++ b/README.md @@ -591,7 +591,7 @@ __weak typeof (self) weakSelf = self; // Get a waveform with 1024 points of data. We can adjust the number of points to whatever level // of detail is needed by the application [self.audioFile getWaveformDataWithNumberOfPoints:1024 - completionBlock:^(float **waveformData, + completion:^(float **waveformData, int length) { [weakSelf.audioPlot updateBuffer:waveformData[0]