diff --git a/app/src/main/java/org/mozilla/fenix/components/Components.kt b/app/src/main/java/org/mozilla/fenix/components/Components.kt index 83ac7fa94..92b9d97d0 100644 --- a/app/src/main/java/org/mozilla/fenix/components/Components.kt +++ b/app/src/main/java/org/mozilla/fenix/components/Components.kt @@ -31,7 +31,11 @@ import java.util.concurrent.TimeUnit private const val DAY_IN_MINUTES = 24 * 60L /** - * Provides access to all components. + * Provides access to all components. This class is an implementation of the Service Locator + * pattern, which helps us manage the dependencies in our app. + * + * Note: these aren't just "components" from "android-components": they're any "component" that + * can be considered a building block of our app. */ @Mockable class Components(private val context: Context) {