Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit f2493a6

Browse files
committed
Changes to whitespace in signatures
1 parent 6e924f5 commit f2493a6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/core/guillotine.Executable.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,19 @@ sealed trait Executable:
3636
type Exec <: Label
3737

3838
def fork[ResultType]()(using working: WorkingDirectory)
39-
: Process[Exec, ResultType] logs ExecEvent raises ExecError
39+
: Process[Exec, ResultType] logs ExecEvent raises ExecError
4040

4141
def exec[ResultType: Computable]()
4242
(using working: WorkingDirectory)
43-
: ResultType logs ExecEvent raises ExecError =
43+
: ResultType logs ExecEvent raises ExecError =
4444

4545
fork[ResultType]().await()
4646

4747
def apply()
4848
(using erased intelligible: Exec is Intelligible,
49-
working: WorkingDirectory,
49+
working: WorkingDirectory,
5050
computable: intelligible.Result is Computable)
51-
: intelligible.Result logs ExecEvent raises ExecError =
51+
: intelligible.Result logs ExecEvent raises ExecError =
5252

5353
fork[intelligible.Result]().await()
5454

src/core/guillotine.Process.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class Process[+ExecType <: Label, ResultType](process: java.lang.Process) extend
5454

5555
def stdin[ChunkType](stream: LazyList[ChunkType])
5656
(using writable: ji.OutputStream is Writable by ChunkType)
57-
: Unit =
57+
: Unit =
5858

5959
writable.write(process.getOutputStream.nn, stream)
6060

0 commit comments

Comments
 (0)