Fix unordered list indentation

This commit is contained in:
Marcel Stör 2016-06-26 08:34:23 +02:00
parent ed679a7263
commit 6c96c4dc31
1 changed files with 5 additions and 5 deletions

View File

@ -65,11 +65,11 @@ Register callback functions for events.
#### Parameters #### Parameters
- `event` identifier, one of: - `event` identifier, one of:
- `data` callback function is supposed to return a string containing the next chunk of data. - `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. - `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()`. - `paused` playback was paused by `pcm.drv:pause()`.
- `stopped` playback was stopped by `pcm.drv:stop()`. - `stopped` playback was stopped by `pcm.drv:stop()`.
- `vu` new peak data, `cb_fn` is triggered `freq` times per second (1 to 200 Hz). - `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. - `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 #### Returns