summaryrefslogtreecommitdiff
path: root/src/core/loader
diff options
context:
space:
mode:
authorGravatar Mat M2017-02-26 20:58:51 -0500
committerGravatar Yuri Kunde Schlesner2017-02-26 17:58:51 -0800
commit0cb52ee74a8255eb0320c882bc9e70700317d16a (patch)
tree800920c60df4d183d20d94465e0886e5655216a0 /src/core/loader
parentMerge pull request #2587 from yuriks/status-bar (diff)
downloadyuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar.gz
yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar.xz
yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.zip
Doxygen: Amend minor issues (#2593)
Corrects a few issues with regards to Doxygen documentation, for example: - Incorrect parameter referencing. - Missing @param tags. - Typos in @param tags. and a few minor other issues.
Diffstat (limited to 'src/core/loader')
-rw-r--r--src/core/loader/loader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h
index a6c2a745f..1d80766ae 100644
--- a/src/core/loader/loader.h
+++ b/src/core/loader/loader.h
@@ -54,7 +54,7 @@ FileType IdentifyFile(const std::string& file_name);
54 * @return FileType of file. Note: this will return FileType::Unknown if it is unable to determine 54 * @return FileType of file. Note: this will return FileType::Unknown if it is unable to determine
55 * a filetype, and will never return FileType::Error. 55 * a filetype, and will never return FileType::Error.
56 */ 56 */
57FileType GuessFromExtension(const std::string& extension_); 57FileType GuessFromExtension(const std::string& extension);
58 58
59/** 59/**
60 * Convert a FileType into a string which can be displayed to the user. 60 * Convert a FileType into a string which can be displayed to the user.