Skip to content

Commit ebbdd04

Browse files
committed
Docs capitalize
1 parent 2ac377b commit ebbdd04

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

packages-exp/functions-exp/src/api.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ export function getFunctions(
6060
*
6161
* Note: this must be called before this instance has been used to do any operations.
6262
*
63-
* @param host the emulator host (ex: localhost)
64-
* @param port the emulator port (ex: 5001)
63+
* @param host The emulator host (ex: localhost)
64+
* @param port The emulator port (ex: 5001)
6565
* @public
6666
*/
6767
export function useFunctionsEmulator(

packages-exp/functions-exp/src/service.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ export class FunctionsService implements _FirebaseService {
137137
*
138138
* Note: this must be called before this instance has been used to do any operations.
139139
*
140-
* @param host the emulator host (ex: localhost)
141-
* @param port the emulator port (ex: 5001)
140+
* @param host The emulator host (ex: localhost)
141+
* @param port The emulator port (ex: 5001)
142142
* @public
143143
*/
144144
export function useFunctionsEmulator(

packages/firebase/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1805,8 +1805,8 @@ declare namespace firebase.functions {
18051805
*
18061806
* Note: this must be called before this instance has been used to do any operations.
18071807
*
1808-
* @param host the emulator host (ex: localhost)
1809-
* @param port the emulator port (ex: 5001)
1808+
* @param host The emulator host (ex: localhost)
1809+
* @param port The emulator port (ex: 5001)
18101810
*/
18111811
useEmulator(host: string, port: number): void;
18121812

packages/functions-types/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ export class FirebaseFunctions {
5858
*
5959
* Note: this must be called before this instance has been used to do any operations.
6060
*
61-
* @param host the emulator host (ex: localhost)
62-
* @param port the emulator port (ex: 5001)
61+
* @param host The emulator host (ex: localhost)
62+
* @param port The emulator port (ex: 5001)
6363
*/
6464
useEmulator(host: string, port: number): void;
6565

packages/functions/src/api/service.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ export class Service implements FirebaseFunctions, FirebaseService {
155155
*
156156
* Note: this must be called before this instance has been used to do any operations.
157157
*
158-
* @param host the emulator host (ex: localhost)
159-
* @param port the emulator port (ex: 5001)
158+
* @param host The emulator host (ex: localhost)
159+
* @param port The emulator port (ex: 5001)
160160
*/
161161
useEmulator(host: string, port: number): void {
162162
this.emulatorOrigin = `http://${host}:${port}`;

0 commit comments

Comments
 (0)