Skip to content

Commit 74208a9

Browse files
MarkAdelldavideast
authored andcommitted
docs(): fix bug in storage downloading files example (#1502)
1 parent c74b10a commit 74208a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/storage/storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export class AppComponent {
124124
profileUrl: Observable<string | null>;
125125
constructor(private storage: AngularFireStorage) {
126126
const ref = this.storage.ref('users/davideast.jpg');
127-
this.profileUrl = ref.getDownloadUrl();
127+
this.profileUrl = ref.getDownloadURL();
128128
}
129129
}
130130
```

0 commit comments

Comments
 (0)