From ead7cf17cccebcfad690307a68918b5bdebc094c Mon Sep 17 00:00:00 2001
From: Grant Copley <gcopley@gmail.com>
Date: Wed, 29 Mar 2023 10:04:40 -0500
Subject: [PATCH] Update comment

---
 models/AmazonS3.cfc | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/models/AmazonS3.cfc b/models/AmazonS3.cfc
index 7f5d72d..52818c1 100644
--- a/models/AmazonS3.cfc
+++ b/models/AmazonS3.cfc
@@ -1719,8 +1719,12 @@ component accessors="true" singleton {
 	}
 
 	/**
-	 * Determine mime type from the file extension
-	 * */
+	 * Determines mime type from the file extension
+	 *
+	 * @filePath The path to the file stored in S3.
+	 *  
+	 * @return string
+	 */
 	string function getFileMimeType( required string filePath ){
 		var contentType = "binary/octet-stream";
 		if ( len( arguments.filePath ) ) {