Skip to content

Commit fa63f97

Browse files
author
Athira M
committed
Fix messages and docs
1 parent a19c1a7 commit fa63f97

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

docs-devsite/remote-config.fetchresponse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export interface FetchResponse
2626
| --- | --- | --- |
2727
| [config](./remote-config.fetchresponse.md#fetchresponseconfig) | [FirebaseRemoteConfigObject](./remote-config.firebaseremoteconfigobject.md#firebaseremoteconfigobject_interface) | Defines the map of parameters returned as "entries" in the fetch response body.<p>Only defined for 200 responses. |
2828
| [eTag](./remote-config.fetchresponse.md#fetchresponseetag) | string | Defines the ETag response header value.<p>Only defined for 200 and 304 responses. |
29-
| [experiments](./remote-config.fetchresponse.md#fetchresponseexperiments) | [FirebaseExperimentDescription](./remote-config.firebaseexperimentdescription.md#firebaseexperimentdescription_interface)<!-- -->\[\] | A/B Test and Rollout experiment metadata. |
29+
| [experiments](./remote-config.fetchresponse.md#fetchresponseexperiments) | [FirebaseExperimentDescription](./remote-config.firebaseexperimentdescription.md#firebaseexperimentdescription_interface)<!-- -->\[\] | Metadata for A/B testing and Remote Config Rollout experiments. |
3030
| [status](./remote-config.fetchresponse.md#fetchresponsestatus) | number | The HTTP status, which is useful for differentiating success responses with data from those without.<p>The Remote Config client is modeled after the native <code>Fetch</code> interface, so HTTP status is first-class.<p>Disambiguation: the fetch response returns a legacy "state" value that is redundant with the HTTP status code. The former is normalized into the latter. |
3131
| [templateVersion](./remote-config.fetchresponse.md#fetchresponsetemplateversion) | number | The version number of the config template fetched from the server. |
3232

@@ -56,7 +56,7 @@ eTag?: string;
5656

5757
## FetchResponse.experiments
5858

59-
A/B Test and Rollout experiment metadata.
59+
Metadata for A/B testing and Remote Config Rollout experiments.
6060

6161
Only defined for 200 responses.
6262

packages/remote-config/src/public_types.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,7 @@ export interface FirebaseExperimentDescription {
8282
// months.
8383
timeToLiveMillis: string;
8484

85-
// A repeated of Remote Config parameter keys that this experiment is
86-
// affecting the value of.
85+
// Which all parameters are affected by this experiment.
8786
affectedParameterKeys?: string[];
8887
}
8988

@@ -128,7 +127,7 @@ export interface FetchResponse {
128127
templateVersion?: number;
129128

130129
/**
131-
* A/B Test and Rollout experiment metadata.
130+
* Metadata for A/B testing and Remote Config Rollout experiments.
132131
*
133132
* @remarks Only defined for 200 responses.
134133
*/

0 commit comments

Comments
 (0)