diff --git a/include/vkcv/File.hpp b/include/vkcv/File.hpp
index 67e455d623d1cb26bd09bf7dbd76b01492988637..dc41b169bc87bd4927e5db505f165fb6d8f59cfb 100644
--- a/include/vkcv/File.hpp
+++ b/include/vkcv/File.hpp
@@ -9,8 +9,16 @@
 
 namespace vkcv {
 	
+	/**
+	 * Generate a new temporary file path and return it.
+	 * @return A unique path for a temporary file
+	 */
 	std::filesystem::path generateTemporaryFilePath();
 	
+	/**
+	 * Generate a new temporary directory path and return it.
+	 * @return A unique path for a temporary directory
+	 */
 	std::filesystem::path generateTemporaryDirectoryPath();
 	
 }
diff --git a/include/vkcv/Logger.hpp b/include/vkcv/Logger.hpp
index 64b08e54ab5e806db18d9547971527a81a19df7b..4ae2f7b9d62ca80bfad3463707866472807e84f7 100644
--- a/include/vkcv/Logger.hpp
+++ b/include/vkcv/Logger.hpp
@@ -1,7 +1,7 @@
 #pragma once
 /**
  * @authors Tobias Frisch
- * @file vkcv/Logging.hpp
+ * @file vkcv/Logger.hpp
  * @brief Logging macro function to print line of code specific information.
  */