Skip to content

Commit 1e0c236

Browse files
RBusarowgithub-actions[bot]
authored andcommitted
Apply changes from ktLintFormat
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 411863a commit 1e0c236

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

workflow-core/src/commonMain/kotlin/com/squareup/workflow1/BaseRenderContext.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,9 @@ public interface BaseRenderContext<out PropsT, StateT, in OutputT> {
105105
@WorkflowExperimentalApi
106106
public fun <ChildRenderingT> renderComposable(
107107
key: String = "",
108-
content: @WorkflowComposable @Composable () -> ChildRenderingT
108+
content:
109+
@WorkflowComposable @Composable
110+
() -> ChildRenderingT
109111
): ChildRenderingT
110112

111113
/**

workflow-core/src/commonMain/kotlin/com/squareup/workflow1/compose/ComposeWorkflow.kt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,12 @@ constructor(
163163
private val injectedService: Service,
164164
private val child: Workflow<String, String, String>
165165
) : ComposeWorkflow<
166-
/* PropsT */ String,
167-
/* OutputT */ String,
168-
/* RenderingT */ Rendering
166+
/* PropsT */
167+
String,
168+
/* OutputT */
169+
String,
170+
/* RenderingT */
171+
Rendering
169172
>() {
170173

171174
// In real code, this would not be defined in the workflow itself but somewhere else in the

0 commit comments

Comments
 (0)