Skip to content

Commit

Permalink
s/the the /the /g
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrjr committed Mar 1, 2023
1 parent 0d17853 commit 51d5936
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ subprojects {
if (file("src/${dokkaSourceSet.name}").exists()) {

val readmeFile = file("$projectDir/README.md")
// If the module has a README, add it to the the module's index
// If the module has a README, add it to the module's index
if (readmeFile.exists()) {
includes.from(readmeFile)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ public interface WorkerTester<T> {
* Access the [TestCoroutineScheduler] of the [kotlinx.coroutines.test.TestScope] running
* the [Worker]'s [test].
*
* This can be used to advance virtual time for the [CoroutineDispatcher] that the the Worker's
* flow is flowing on.
* This can be used to advance virtual time for the
* [CoroutineDispatcher][kotlinx.coroutines.CoroutineDispatcher]
* that the Worker's flow is flowing on.
*/
public val testCoroutineScheduler: TestCoroutineScheduler

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public abstract class ModalContainer<ModalRenderingT : Any> @JvmOverloads constr

/**
* Stores the result of looking for the nearest [LifecycleOwner] that should be the parent of all
* this container's modals. Only valid after the the view has been attached.
* this container's modals. Only valid after the view has been attached.
*/
private val parentLifecycleOwner by lazy(mode = LazyThreadSafetyMode.NONE) {
WorkflowLifecycleOwner.get(this) ?: error(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.StateFlow

/**
* Reports the the area of the screen whose events should be blocked by any modal [Overlay],
* Reports the area of the screen whose events should be blocked by any modal [Overlay],
* in the style reported by [View.getGlobalVisibleRect][android.view.View.getGlobalVisibleRect].
* Expected to be supplied by containers that support [BodyAndOverlaysScreen].
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public interface Container<BaseT, out ContentT : BaseT> {
* A [Container] rendering that wraps exactly one other rendering, its [content]. These are
* typically used to "add value" to the [content], e.g. an
* [EnvironmentScreen][com.squareup.workflow1.ui.container.EnvironmentScreen] that allows
* changes to be made to the the [ViewEnvironment].
* changes to be made to the [ViewEnvironment].
*
* Usually a [Wrapper] is [Compatible] only with others of the same type with
* [Compatible] [content]. In aid of that, this interface extends [Compatible] and
Expand Down

0 comments on commit 51d5936

Please sign in to comment.