We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb23fa0 commit b8ea0b3Copy full SHA for b8ea0b3
firebase-components/src/main/java/com/google/firebase/components/Dependency.java
@@ -64,8 +64,8 @@ public static Dependency optional(Class<?> anInterface) {
64
/**
65
* Declares a deferred dependency.
66
*
67
- * <p>Such dependencies are optional and may not be present be default. But they can become
68
- * available if a dynamic module is installed that they are contained in.
+ * <p>Such dependencies are optional and may not be present by default. But they can become
+ * available if a dynamic module that contains them is installed.
69
*/
70
public static Dependency deferred(Class<?> anInterface) {
71
return new Dependency(anInterface, Type.OPTIONAL, Injection.DEFERRED);
0 commit comments