Skip to content

Commit c0b58f6

Browse files
committed
JS: Capitalize Firebase in comments
1 parent 99cc09d commit c0b58f6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

javascript/ql/src/semmle/javascript/frameworks/Firebase.qll

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import javascript
55

66
module 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

Comments
 (0)