Skip to content

Commit c5a0fb5

Browse files
authored
Fixing broken @link tags for https docs (#1115)
1 parent ff4fc3f commit c5a0fb5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/v2/providers/https.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export interface HttpsOptions extends Omit<GlobalOptions, 'region'> {
4646
/** If true, allows CORS on requests to this function.
4747
* If this is a `string` or `RegExp`, allows requests from domains that match the provided value.
4848
* If this is an `Array`, allows requests from domains matching at least one entry of the array.
49-
* Defaults to true for {@link CallableFunction}s and false otherwise.
49+
* Defaults to true for {@link https.CallableFunction} and false otherwise.
5050
*/
5151
cors?: string | boolean | RegExp | Array<string | RegExp>;
5252
}
@@ -79,7 +79,7 @@ export interface CallableFunction<T, Return> extends HttpsFunction {
7979
/**
8080
* Handles HTTPS requests.
8181
* @param opts - Options to set on this function
82-
* @param handler - A function that takes a {@link Request} and response object, same signature as an Express app.
82+
* @param handler - A function that takes a {@link https.Request} and response object, same signature as an Express app.
8383
* @returns A function that you can export and deploy.
8484
*/
8585
export function onRequest(
@@ -91,7 +91,7 @@ export function onRequest(
9191
): HttpsFunction;
9292
/**
9393
* Handles HTTPS requests.
94-
* @param handler - A function that takes a {@link Request} and response object, same signature as an Express app.
94+
* @param handler - A function that takes a {@link https.Request} and response object, same signature as an Express app.
9595
* @returns A function that you can export and deploy.
9696
*/
9797
export function onRequest(
@@ -194,7 +194,7 @@ export function onRequest(
194194
/**
195195
* Declares a callable method for clients to call using a Firebase SDK.
196196
* @param opts - Options to set on this function.
197-
* @param handler - A function that takes a {@link CallableRequest}.
197+
* @param handler - A function that takes a {@link https.CallableRequest}.
198198
* @returns A function that you can export and deploy.
199199
*/
200200
export function onCall<T = any, Return = any | Promise<any>>(
@@ -203,7 +203,7 @@ export function onCall<T = any, Return = any | Promise<any>>(
203203
): CallableFunction<T, Return>;
204204
/**
205205
* Declares a callable method for clients to call using a Firebase SDK.
206-
* @param handler - A function that takes a {@link CallableRequest}.
206+
* @param handler - A function that takes a {@link https.CallableRequest}.
207207
* @returns A function that you can export and deploy.
208208
*/
209209
export function onCall<T = any, Return = any | Promise<any>>(

0 commit comments

Comments
 (0)