aboutsummaryrefslogtreecommitdiff
path: root/src/filter_plugin.h
diff options
context:
space:
mode:
authorJonathan Neuschäfer <j.neuschaefer@gmx.net>2011-03-31 21:43:53 +0200
committerMax Kellermann <max@duempel.org>2011-03-31 21:46:01 +0200
commit6d3ed3f16f7c427b22e8087804cea0f9874f4358 (patch)
treeeed6fc7d6075fcde520d3c2bd4c2e70db854cb7a /src/filter_plugin.h
parentbe798998bf44f740943cf82f6edb6d3616a8606a (diff)
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 'src/filter_plugin.h')
-rw-r--r--src/filter_plugin.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/filter_plugin.h b/src/filter_plugin.h
index d1e6433c..58e34dfb 100644
--- a/src/filter_plugin.h
+++ b/src/filter_plugin.h
@@ -79,7 +79,7 @@ struct filter_plugin {
*
* @param plugin the filter plugin
* @param param optional configuration section
- * @param error location to store the error occuring, or NULL to
+ * @param error location to store the error occurring, or NULL to
* ignore errors.
* @return a new filter object, or NULL on error
*/
@@ -92,7 +92,7 @@ filter_new(const struct filter_plugin *plugin,
* the specified configuration section.
*
* @param param the configuration section
- * @param error location to store the error occuring, or NULL to
+ * @param error location to store the error occurring, or NULL to
* ignore errors.
* @return a new filter object, or NULL on error
*/
@@ -114,7 +114,7 @@ filter_free(struct filter *filter);
* @param filter the filter object
* @param audio_format the audio format of incoming data; the plugin
* may modify the object to enforce another input format
- * @param error location to store the error occuring, or NULL to
+ * @param error location to store the error occurring, or NULL to
* ignore errors.
* @return the format of outgoing data
*/
@@ -137,7 +137,7 @@ filter_close(struct filter *filter);
* @param src the input buffer
* @param src_size the size of #src_buffer in bytes
* @param dest_size_r the size of the returned buffer
- * @param error location to store the error occuring, or NULL to
+ * @param error location to store the error occurring, or NULL to
* ignore errors.
* @return the destination buffer on success (will be invalidated by
* filter_close() or filter_filter()), NULL on error