Skip to content

Commit 04906aa

Browse files
committed
Fix doc strings
1 parent 3016467 commit 04906aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
/**
2929
* This class is the entry point for all server-side Firebase Remote Config actions.
3030
*
31-
* <p>You can get an instance of FirebaseRemoteConfig via {@link #getInstance(FirebaseApp)}, and
32-
* then use it to manage Remote Config templates.
31+
* <p>You can get an instance of {@link FirebaseRemoteConfig} via {@link #getInstance(FirebaseApp)},
32+
* and then use it to manage Remote Config templates.
3333
*/
3434
public final class FirebaseRemoteConfig {
3535

@@ -83,7 +83,7 @@ public RemoteConfigTemplate getTemplate() throws FirebaseRemoteConfigException {
8383
/**
8484
* Similar to {@link #getTemplate()} but performs the operation asynchronously.
8585
*
86-
* @return An {@code ApiFuture} that will complete with a {@link RemoteConfigTemplate} when
86+
* @return An {@code ApiFuture} that completes with a {@link RemoteConfigTemplate} when
8787
* the template is available.
8888
*/
8989
public ApiFuture<RemoteConfigTemplate> getTemplateAsync() {

0 commit comments

Comments
 (0)