|
53 | 53 | * <p>Callers should first get the singleton object using {@link #getInstance()}, and then call
|
54 | 54 | * operations on that singleton object. The singleton contains the complete set of Remote Config
|
55 | 55 | * 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()}. |
57 | 57 | */
|
58 | 58 | public class FirebaseRemoteConfig {
|
59 | 59 | // -------------------------------------------------------------------------------
|
@@ -104,27 +104,27 @@ public static FirebaseRemoteConfig getInstance(@NonNull FirebaseApp app) {
|
104 | 104 | public static final int VALUE_SOURCE_STATIC = 0;
|
105 | 105 | /** Indicates that the value returned was retrieved from the defaults set by the client. */
|
106 | 106 | 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. */ |
108 | 108 | public static final int VALUE_SOURCE_REMOTE = 2;
|
109 | 109 |
|
110 | 110 | /**
|
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 |
112 | 112 | * was completed successfully.
|
113 | 113 | */
|
114 | 114 | public static final int LAST_FETCH_STATUS_SUCCESS = -1;
|
115 | 115 | /**
|
116 | 116 | * 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. |
118 | 118 | */
|
119 | 119 | public static final int LAST_FETCH_STATUS_NO_FETCH_YET = 0;
|
120 | 120 | /**
|
121 | 121 | * Indicates that the most recent attempt to fetch parameter values from the Firebase Remote
|
122 |
| - * Config Server has failed. |
| 122 | + * Config server has failed. |
123 | 123 | */
|
124 | 124 | public static final int LAST_FETCH_STATUS_FAILURE = 1;
|
125 | 125 | /**
|
126 | 126 | * Indicates that the most recent attempt to fetch parameter values from the Firebase Remote
|
127 |
| - * Config Server was throttled. |
| 127 | + * Config server was throttled. |
128 | 128 | */
|
129 | 129 | public static final int LAST_FETCH_STATUS_THROTTLED = 2;
|
130 | 130 |
|
|
0 commit comments