From 6c96c4dc31bfc752199b050abcf640b091912e36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20St=C3=B6r?= Date: Sun, 26 Jun 2016 08:34:23 +0200 Subject: [PATCH] Fix unordered list indentation --- docs/en/modules/pcm.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/en/modules/pcm.md b/docs/en/modules/pcm.md index 8491a21e..82a49915 100644 --- a/docs/en/modules/pcm.md +++ b/docs/en/modules/pcm.md @@ -65,11 +65,11 @@ Register callback functions for events. #### Parameters - `event` identifier, one of: - - `data` callback function is supposed to return a string containing the next chunk of data. - - `drained` playback was stopped due to lack of data. The last 2 invocations of the `data` callback didn't provide new chunks in time (intentionally or unintentionally) and the internal buffers were fully consumed. - - `paused` playback was paused by `pcm.drv:pause()`. - - `stopped` playback was stopped by `pcm.drv:stop()`. - - `vu` new peak data, `cb_fn` is triggered `freq` times per second (1 to 200 Hz). + - `data` callback function is supposed to return a string containing the next chunk of data. + - `drained` playback was stopped due to lack of data. The last 2 invocations of the `data` callback didn't provide new chunks in time (intentionally or unintentionally) and the internal buffers were fully consumed. + - `paused` playback was paused by `pcm.drv:pause()`. + - `stopped` playback was stopped by `pcm.drv:stop()`. + - `vu` new peak data, `cb_fn` is triggered `freq` times per second (1 to 200 Hz). - `cb_fn` callback function for the specified event. Unregisters previous function if omitted. First parameter is `drv`, followed by peak data for `vu` callback. #### Returns