44import javascript
55
66module Firebase {
7- /** Gets a reference to the firebase API object. */
7+ /** Gets a reference to the Firebase API object. */
88 private DataFlow:: SourceNode firebase ( DataFlow:: TypeTracker t ) {
99 t .start ( ) and
1010 (
@@ -25,7 +25,7 @@ module Firebase {
2525 result = firebase ( _)
2626 }
2727
28- /** Gets a reference to a firebase app created with `initializeApp`. */
28+ /** Gets a reference to a Firebase app created with `initializeApp`. */
2929 private DataFlow:: SourceNode initApp ( DataFlow:: TypeTracker t ) {
3030 result = firebase ( ) .getAMethodCall ( "initializeApp" ) and t .start ( )
3131 or
@@ -35,7 +35,7 @@ module Firebase {
3535 }
3636
3737 /**
38- * Gets a reference to a firebase app, either the `firebase` object or an
38+ * Gets a reference to a Firebase app, either the `firebase` object or an
3939 * app created explicitly with `initializeApp()`.
4040 */
4141 DataFlow:: SourceNode app ( ) {
@@ -44,7 +44,7 @@ module Firebase {
4444
4545 module Database {
4646
47- /** Gets a reference to a firebase database object, such as `firebase.database()`. */
47+ /** Gets a reference to a Firebase database object, such as `firebase.database()`. */
4848 private DataFlow:: SourceNode database ( DataFlow:: TypeTracker t ) {
4949 result = app ( ) .getAMethodCall ( "database" ) and t .start ( )
5050 or
@@ -53,7 +53,7 @@ module Firebase {
5353 )
5454 }
5555
56- /** Gets a reference to a firebase database object, such as `firebase.database()`. */
56+ /** Gets a reference to a Firebase database object, such as `firebase.database()`. */
5757 DataFlow:: SourceNode database ( ) {
5858 result = database ( _)
5959 }
0 commit comments