diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2011-03-31 21:43:53 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-03-31 21:46:01 +0200 |
commit | 6d3ed3f16f7c427b22e8087804cea0f9874f4358 (patch) | |
tree | eed6fc7d6075fcde520d3c2bd4c2e70db854cb7a /src/output_plugin.h | |
parent | be798998bf44f740943cf82f6edb6d3616a8606a (diff) | |
download | mpd-6d3ed3f16f7c427b22e8087804cea0f9874f4358.tar.gz mpd-6d3ed3f16f7c427b22e8087804cea0f9874f4358.tar.xz mpd-6d3ed3f16f7c427b22e8087804cea0f9874f4358.zip |
fix common misspellings
These fixes were mostly generated with `codespell' [0] and manually
reviewed.
[0] http://git.profusion.mobi/cgit.cgi/lucas/codespell/
Diffstat (limited to '')
-rw-r--r-- | src/output_plugin.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/output_plugin.h b/src/output_plugin.h index 1611a3cb6..72b519d13 100644 --- a/src/output_plugin.h +++ b/src/output_plugin.h @@ -52,7 +52,7 @@ struct audio_output_plugin { * none is configured * @param param the configuration section, or NULL if there is * no configuration - * @param error location to store the error occuring, or NULL + * @param error location to store the error occurring, or NULL * to ignore errors * @return NULL on error, or an opaque pointer to the plugin's * data @@ -72,7 +72,7 @@ struct audio_output_plugin { * fail: if an error occurs during that, it should be reported * by the open() method. * - * @param error_r location to store the error occuring, or + * @param error_r location to store the error occurring, or * NULL to ignore errors * @return true on success, false on error */ @@ -89,7 +89,7 @@ struct audio_output_plugin { * * @param audio_format the audio format in which data is going * to be delivered; may be modified by the plugin - * @param error location to store the error occuring, or NULL + * @param error location to store the error occurring, or NULL * to ignore errors */ bool (*open)(void *data, struct audio_format *audio_format, @@ -119,7 +119,7 @@ struct audio_output_plugin { /** * Play a chunk of audio data. * - * @param error location to store the error occuring, or NULL + * @param error location to store the error occurring, or NULL * to ignore errors * @return the number of bytes played, or 0 on error */ |