/**
* Convert generic options to data types that are specific to Driver::scan().
*
- * @param[in] user_spec vector of tokenized words, string format
- * @param[in] driver_opts driver's scan options, result of Driver::scan_options()
+ * @param[in] user_spec Vector of tokenized words, string format.
+ * @param[in] driver_opts Driver's scan options, result of Driver::scan_options().
*
- * @return map of options suitable for Driver::scan()
+ * @return Map of options suitable for Driver::scan().
*/
map<const ConfigKey *, Glib::VariantBase>
DeviceManager::drive_scan_options(vector<string> user_spec,
/**
* Convert generic options to data types that are specific to InputFormat.
*
- * @param[in] user_spec vector of tokenized words, string format
- * @param[in] fmt_opts input format's options, result of InputFormat::options()
+ * @param[in] user_spec Vector of tokenized words, string format.
+ * @param[in] fmt_opts Input format's options, result of InputFormat::options().
*
- * @return map of options suitable for InputFormat::create_input()
+ * @return Map of options suitable for InputFormat::create_input().
*/
map<string, Glib::VariantBase>
Session::input_format_options(vector<string> user_spec,
}
/**
- * Split a string into tokens at occurances of the separator.
+ * Split a string into tokens at occurences of the separator.
*
- * @param[in] text the input string to split
- * @param[in] separator the delimiter between tokens
+ * @param[in] text The input string to split.
+ * @param[in] separator The delimiter between tokens.
*
- * @return a vector of broken down tokens
+ * @return A vector of broken down tokens.
*/
vector<string> split_string(string text, string separator)
{