aboutsummaryrefslogtreecommitdiffstats
path: root/src/input
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-01-31 22:17:15 +0100
committerMax Kellermann <max@duempel.org>2015-01-31 22:17:15 +0100
commiteb1733609ad9a0842ba1c77b1c375507929f9585 (patch)
tree8029b3b81d8e8ffb9ef0871a3e46796c000deb70 /src/input
parente2e66404d5fa8f3fcc0581abdf6d2ccc9790954e (diff)
downloadmpd-eb1733609ad9a0842ba1c77b1c375507929f9585.tar.gz
mpd-eb1733609ad9a0842ba1c77b1c375507929f9585.tar.xz
mpd-eb1733609ad9a0842ba1c77b1c375507929f9585.zip
decoder/sndfile, ...: update API documentation
Diffstat (limited to '')
-rw-r--r--src/input/Init.hxx4
-rw-r--r--src/input/TextInputStream.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/input/Init.hxx b/src/input/Init.hxx
index b19bc112f..4ad4ba577 100644
--- a/src/input/Init.hxx
+++ b/src/input/Init.hxx
@@ -23,13 +23,13 @@
class Error;
/**
- * Initializes this library and all input_stream implementations.
+ * Initializes this library and all #InputStream implementations.
*/
bool
input_stream_global_init(Error &error);
/**
- * Deinitializes this library and all input_stream implementations.
+ * Deinitializes this library and all #InputStream implementations.
*/
void input_stream_global_finish(void);
diff --git a/src/input/TextInputStream.hxx b/src/input/TextInputStream.hxx
index 6b3a18d0b..d0b5d5f40 100644
--- a/src/input/TextInputStream.hxx
+++ b/src/input/TextInputStream.hxx
@@ -30,10 +30,10 @@ class TextInputStream {
public:
/**
- * Wraps an existing #input_stream object into a #TextInputStream,
+ * Wraps an existing #InputStream object into a #TextInputStream,
* to read its contents as text lines.
*
- * @param _is an open #input_stream object
+ * @param _is an open #InputStream object
*/
explicit TextInputStream(InputStream &_is)
:is(_is) {}