Skip to content

Commit bad35ef

Browse files
authored
Lowercase "server(s)" in Remote Config docs. (#4970)
1 parent 8f1a33f commit bad35ef

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

firebase-config/src/main/java/com/google/firebase/remoteconfig/FirebaseRemoteConfig.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
* <p>Callers should first get the singleton object using {@link #getInstance()}, and then call
5454
* operations on that singleton object. The singleton contains the complete set of Remote Config
5555
* parameter values available to your app. The singleton also stores values fetched from the Remote
56-
* Config Server until they are made available for use with a call to {@link #activate()}.
56+
* Config server until they are made available for use with a call to {@link #activate()}.
5757
*/
5858
public class FirebaseRemoteConfig {
5959
// -------------------------------------------------------------------------------
@@ -104,27 +104,27 @@ public static FirebaseRemoteConfig getInstance(@NonNull FirebaseApp app) {
104104
public static final int VALUE_SOURCE_STATIC = 0;
105105
/** Indicates that the value returned was retrieved from the defaults set by the client. */
106106
public static final int VALUE_SOURCE_DEFAULT = 1;
107-
/** Indicates that the value returned was retrieved from the Firebase Remote Config Server. */
107+
/** Indicates that the value returned was retrieved from the Firebase Remote Config server. */
108108
public static final int VALUE_SOURCE_REMOTE = 2;
109109

110110
/**
111-
* Indicates that the most recent fetch of parameter values from the Firebase Remote Config Server
111+
* Indicates that the most recent fetch of parameter values from the Firebase Remote Config server
112112
* was completed successfully.
113113
*/
114114
public static final int LAST_FETCH_STATUS_SUCCESS = -1;
115115
/**
116116
* Indicates that the FirebaseRemoteConfig singleton object has not yet attempted to fetch
117-
* parameter values from the Firebase Remote Config Server.
117+
* parameter values from the Firebase Remote Config server.
118118
*/
119119
public static final int LAST_FETCH_STATUS_NO_FETCH_YET = 0;
120120
/**
121121
* Indicates that the most recent attempt to fetch parameter values from the Firebase Remote
122-
* Config Server has failed.
122+
* Config server has failed.
123123
*/
124124
public static final int LAST_FETCH_STATUS_FAILURE = 1;
125125
/**
126126
* Indicates that the most recent attempt to fetch parameter values from the Firebase Remote
127-
* Config Server was throttled.
127+
* Config server was throttled.
128128
*/
129129
public static final int LAST_FETCH_STATUS_THROTTLED = 2;
130130

0 commit comments

Comments
 (0)