Skip to content

Commit 51d5936

Browse files
committed
s/the the /the /g
1 parent 0d17853 commit 51d5936

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ subprojects {
7373
if (file("src/${dokkaSourceSet.name}").exists()) {
7474

7575
val readmeFile = file("$projectDir/README.md")
76-
// If the module has a README, add it to the the module's index
76+
// If the module has a README, add it to the module's index
7777
if (readmeFile.exists()) {
7878
includes.from(readmeFile)
7979
}

workflow-testing/src/main/java/com/squareup/workflow1/testing/WorkerTester.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ public interface WorkerTester<T> {
1919
* Access the [TestCoroutineScheduler] of the [kotlinx.coroutines.test.TestScope] running
2020
* the [Worker]'s [test].
2121
*
22-
* This can be used to advance virtual time for the [CoroutineDispatcher] that the the Worker's
23-
* flow is flowing on.
22+
* This can be used to advance virtual time for the
23+
* [CoroutineDispatcher][kotlinx.coroutines.CoroutineDispatcher]
24+
* that the Worker's flow is flowing on.
2425
*/
2526
public val testCoroutineScheduler: TestCoroutineScheduler
2627

workflow-ui/container-android/src/main/java/com/squareup/workflow1/ui/modal/ModalContainer.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public abstract class ModalContainer<ModalRenderingT : Any> @JvmOverloads constr
4747

4848
/**
4949
* Stores the result of looking for the nearest [LifecycleOwner] that should be the parent of all
50-
* this container's modals. Only valid after the the view has been attached.
50+
* this container's modals. Only valid after the view has been attached.
5151
*/
5252
private val parentLifecycleOwner by lazy(mode = LazyThreadSafetyMode.NONE) {
5353
WorkflowLifecycleOwner.get(this) ?: error(

workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/container/OverlayArea.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import kotlinx.coroutines.flow.MutableStateFlow
88
import kotlinx.coroutines.flow.StateFlow
99

1010
/**
11-
* Reports the the area of the screen whose events should be blocked by any modal [Overlay],
11+
* Reports the area of the screen whose events should be blocked by any modal [Overlay],
1212
* in the style reported by [View.getGlobalVisibleRect][android.view.View.getGlobalVisibleRect].
1313
* Expected to be supplied by containers that support [BodyAndOverlaysScreen].
1414
*/

workflow-ui/core-common/src/main/java/com/squareup/workflow1/ui/Container.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public interface Container<BaseT, out ContentT : BaseT> {
4949
* A [Container] rendering that wraps exactly one other rendering, its [content]. These are
5050
* typically used to "add value" to the [content], e.g. an
5151
* [EnvironmentScreen][com.squareup.workflow1.ui.container.EnvironmentScreen] that allows
52-
* changes to be made to the the [ViewEnvironment].
52+
* changes to be made to the [ViewEnvironment].
5353
*
5454
* Usually a [Wrapper] is [Compatible] only with others of the same type with
5555
* [Compatible] [content]. In aid of that, this interface extends [Compatible] and

0 commit comments

Comments
 (0)