Skip to content

Commit fd04eec

Browse files
authored
I persist in trying to fix links. (#577)
1 parent c5d3a7b commit fd04eec

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

src/cloud-functions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export interface EventContext {
114114

115115
/**
116116
* An object containing the values of the wildcards in the `path` parameter
117-
* provided to the [`ref()`](functions.database#.ref) method for a Realtime
117+
* provided to the [`ref()`](providers_database_.html#ref) method for a Realtime
118118
* Database trigger. Cannot be accessed while inside the handler namespace.
119119
*/
120120
params: { [option: string]: any };

src/providers/analytics.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ export class UserDimensions {
184184
* A map of user properties set with the
185185
* [`setUserProperty`](https://firebase.google.com/docs/analytics/android/properties) API.
186186
*
187-
* All values are [`UserPropertyValue`](functions.analytics.UserPropertyValue) objects.
187+
* All values are [`UserPropertyValue`](providers_analytics_.userpropertyvalue) objects.
188188
*/
189189
userProperties: { [key: string]: UserPropertyValue };
190190

@@ -319,7 +319,8 @@ export interface DeviceInfo {
319319

320320
/**
321321
* The time zone of the device when data was uploaded, as seconds skew from UTC.
322-
* Use this to calculate the device's local time for [`event.timestamp`](functions.Event#timestamp).
322+
* Use this to calculate the device's local time for
323+
* [`EventContext.timestamp`](cloud_functions_eventcontext.html#timestamp).
323324
*/
324325
deviceTimeZoneOffsetSeconds: number;
325326

src/providers/database.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export function instance(instance: string) {
7575
* 1. Cloud Functions allows wildcards in the `path` name. Any `path` component
7676
* in curly brackets (`{}`) is a wildcard that matches all strings. The value
7777
* that matched a certain invocation of a Cloud Function is returned as part
78-
* of the [`event.params`](functions.EventContext#params) object. For
78+
* of the [`EventContext.params`](cloud_functions_eventcontext.html#params object. For
7979
* example, `ref("messages/{messageId}")` matches changes at
8080
* `/messages/message1` or `/messages/message2`, resulting in
8181
* `event.params.messageId` being set to `"message1"` or `"message2"`,
@@ -104,7 +104,7 @@ export function _instanceWithOptions(
104104
/**
105105
* The Firebase Realtime Database instance builder interface.
106106
*
107-
* Access via [`functions.database.instance()`](functions.database#.instance).
107+
* Access via [`database.instance()`](providers_database_.html#instance).
108108
*/
109109
export class InstanceBuilder {
110110
/** @hidden */

src/providers/pubsub.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export function _scheduleWithOptions(
112112
/**
113113
* The Google Cloud Pub/Sub topic builder.
114114
*
115-
* Access via [`functions.pubsub.topic()`](functions.pubsub#.topic).
115+
* Access via [`functions.pubsub.topic()`](providers_pubsub_.html#topic).
116116
*/
117117
export class TopicBuilder {
118118
/** @hidden */

0 commit comments

Comments
 (0)