@@ -14,11 +14,11 @@ Firebase provides [a hosted binary storage service](https://firebase.google.com/
1414which enables you to store and retrieve user-generated content like images, audio, and
1515video directly from the Firebase client SDK.
1616
17- Binary files are stored in a Firebase Storage bucket, not in the Realtime Database.
17+ Binary files are stored in a Cloud Storage bucket, not in the Realtime Database.
1818The files in your bucket are stored in a hierarchical structure, just like
1919in the Realtime Database.
2020
21- To use the Firebase Storage binding, first [ create a Firebase Storage reference] ( https://firebase.google.com/docs/storage/web/create-reference ) .
21+ To use the Cloud Storage for Firebase binding, first [ create a Storage reference] ( https://firebase.google.com/docs/storage/web/create-reference ) .
2222Then, using this reference, pass it into the ` $firebaseStorage ` service:
2323
2424``` js
@@ -31,7 +31,7 @@ angular
3131
3232// inject $firebaseStorage into our controller
3333function SampleCtrl ($firebaseStorage ) {
34- // create a Firebase Storage Reference for the $firebaseStorage binding
34+ // create a Storage reference for the $firebaseStorage binding
3535 var storageRef = firebase .storage ().ref (" userProfiles/physicsmarie" );
3636 var storage = $firebaseStorage (storageRef);
3737}
@@ -40,7 +40,7 @@ SampleCtrl.$inject = ["$firebaseStorage"];
4040
4141## API Summary
4242
43- The Firebase Storage service is created with several special ` $ ` methods, all of which are listed in the following table:
43+ The Cloud Storage for Firebase service is created with several special ` $ ` methods, all of which are listed in the following table:
4444
4545| Method | Description |
4646| ------------- | ------------- |
@@ -59,7 +59,7 @@ return an [[`UploadTask`](/docs/reference.md#upload-task)(https://firebase.googl
5959
6060``` js
6161function SampleCtrl ($firebaseStorage ) {
62- // create a Firebase Storage Reference for the $firebaseStorage binding
62+ // create a Storage reference for the $firebaseStorage binding
6363 var storageRef = firebase .storage ().ref (' userProfiles/physicsmarie' );
6464 var storage = $firebaseStorage (storageRef);
6565 var file = // get a file from the template (see Retrieving files from template section below)
0 commit comments