@@ -202,26 +202,26 @@ public static FirebaseFunctions getInstance() {
202
202
return getInstance (FirebaseApp .getInstance (), "us-central1" );
203
203
}
204
204
205
- /** Returns a reference to the Callable HTTPS trigger with the given name. */
205
+ /** Returns a reference to the callable HTTPS trigger with the given name. */
206
206
@ NonNull
207
207
public HttpsCallableReference getHttpsCallable (@ NonNull String name ) {
208
208
return new HttpsCallableReference (this , name , new HttpsCallOptions ());
209
209
}
210
210
211
- /** Returns a reference to the Callable HTTPS trigger with the provided url . */
211
+ /** Returns a reference to the callable HTTPS trigger with the provided URL . */
212
212
@ NonNull
213
213
public HttpsCallableReference getHttpsCallableFromUrl (@ NonNull URL url ) {
214
214
return new HttpsCallableReference (this , url , new HttpsCallOptions ());
215
215
}
216
216
217
- /** Returns a reference to the Callable HTTPS trigger with the given name and call options. */
217
+ /** Returns a reference to the callable HTTPS trigger with the given name and call options. */
218
218
@ NonNull
219
219
public HttpsCallableReference getHttpsCallable (
220
220
@ NonNull String name , @ NonNull HttpsCallableOptions options ) {
221
221
return new HttpsCallableReference (this , name , new HttpsCallOptions (options ));
222
222
}
223
223
224
- /** Returns a reference to the Callable HTTPS trigger with the provided url and call options. */
224
+ /** Returns a reference to the callable HTTPS trigger with the provided URL and call options. */
225
225
@ NonNull
226
226
public HttpsCallableReference getHttpsCallableFromUrl (
227
227
@ NonNull URL url , @ NonNull HttpsCallableOptions options ) {
0 commit comments