diff options
Diffstat (limited to 'engines/zvision/utility.h')
-rw-r--r-- | engines/zvision/utility.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/zvision/utility.h b/engines/zvision/utility.h index 9fade107f5..4d124509ba 100644 --- a/engines/zvision/utility.h +++ b/engines/zvision/utility.h @@ -33,8 +33,8 @@ namespace ZVision { * Opens the sourceFile utilizing Common::File (aka SearchMan) and writes the * contents to destFile. destFile is created in the working directory * - * @param sourceFile The 'file' you want the contents of - * @param destFile The name of the file where the content will be written to + * @param sourceFile The 'file' you want the contents of + * @param destFile The name of the file where the content will be written to */ void writeFileContentsToFile(Common::String sourceFile, Common::String destFile) { Common::File f; @@ -57,7 +57,7 @@ void writeFileContentsToFile(Common::String sourceFile, Common::String destFile) * Then removes any trailing and leading 'whitespace' using String::trim() * Note: String::trim uses isspace() to determine what is whitespace and what is not. * - * @param string The string to modify. It is modified in place + * @param string The string to modify. It is modified in place */ void trimCommentsAndWhiteSpace(Common::String &string) { for (int i = string.size(); i >= 0; --i) { |