Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit f5a8445

Browse files
EddyVerbruggeneddyverbruggen
authored andcommitted
Small typos in storage docs #273
1 parent 4239558 commit f5a8445

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/STORAGE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ You can either pass in a full local path to a file, or (as a convenience) use th
5959
console.log("Percentage complete: " + status.percentageCompleted);
6060
}
6161
}).then(
62-
function (uploadedFile)
62+
function (uploadedFile) {
6363
console.log("File uploaded: " + JSON.stringify(uploadedFile));
6464
},
6565
function (error) {
@@ -95,7 +95,7 @@ In this example we'll download the previously uploaded file to a certain path on
9595
// option 2: a full file path (ignored if 'localFile' is set)
9696
localFullPath: logoPath
9797
}).then(
98-
function (uploadedFile)
98+
function (uploadedFile) {
9999
console.log("File downloaded to the requested location");
100100
},
101101
function (error) {
@@ -116,7 +116,7 @@ In this example we'll determine the remote URL of the previously uploaded file.
116116
// the full path of an existing file in your Firebase storage
117117
remoteFullPath: 'uploads/images/telerik-logo-uploaded.png'
118118
}).then(
119-
function (url)
119+
function (url) {
120120
console.log("Remote URL: " + url);
121121
},
122122
function (error) {
@@ -135,7 +135,7 @@ You can pass in remote file path to delete it.
135135
// the full path of an existing file in your Firebase storage
136136
remoteFullPath: 'uploads/images/telerik-logo-uploaded.png'
137137
}).then(
138-
function ()
138+
function () {
139139
console.log("File deleted.");
140140
},
141141
function (error) {

0 commit comments

Comments
 (0)