input: Fix internal API docs.

This commit is contained in:
Bert Vermeulen 2014-08-15 23:31:39 +02:00
parent bd0bfaafd8
commit d65fcbcd41
1 changed files with 4 additions and 4 deletions

View File

@ -197,21 +197,21 @@ struct sr_input {
/** Input (file) module driver. */ /** Input (file) module driver. */
struct sr_input_module { struct sr_input_module {
/** /**
* A unique ID for this output module, suitable for use in command-line * A unique ID for this input module, suitable for use in command-line
* clients, [a-z0-9-]. Must not be NULL. * clients, [a-z0-9-]. Must not be NULL.
*/ */
const char *id; const char *id;
/** /**
* A unique name for this output module, suitable for use in GUI * A unique name for this input module, suitable for use in GUI
* clients, can contain UTF-8. Must not be NULL. * clients, can contain UTF-8. Must not be NULL.
*/ */
const char *name; const char *name;
/** /**
* A short description of the output module. Must not be NULL. * A short description of the input module. Must not be NULL.
* *
* This can be displayed by frontends, e.g. when selecting the output * This can be displayed by frontends, e.g. when selecting the input
* module for saving a file. * module for saving a file.
*/ */
const char *desc; const char *desc;