From e75c20ffd3aece16344b582df97fb45d8a95c4dc Mon Sep 17 00:00:00 2001
From: Tristan Farkas <farkastristan@gmail.com>
Date: Fri, 29 Nov 2024 12:35:36 +0100
Subject: [PATCH] Update incorrect mention of "upload" in a download example.

In code that provides an example of how to download a file, there is an incorrect mention of uploading.
---
 storage/download-files.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/storage/download-files.js b/storage/download-files.js
index cb2af375..89f1f557 100644
--- a/storage/download-files.js
+++ b/storage/download-files.js
@@ -66,7 +66,7 @@ function downloadFullExample() {
         // User doesn't have permission to access the object
         break;
       case 'storage/canceled':
-        // User canceled the upload
+        // User canceled the download
         break;
 
       // ...