aboutsummaryrefslogtreecommitdiff
path: root/stdlib/stdio.ts
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/stdio.ts')
-rw-r--r--stdlib/stdio.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/stdlib/stdio.ts b/stdlib/stdio.ts
index 56b546d..b1e205b 100644
--- a/stdlib/stdio.ts
+++ b/stdlib/stdio.ts
@@ -8,7 +8,6 @@ export interface Debug<_ extends string, T> extends Effect<T> {}
export interface ReadLine extends Effect<string> {}
-export type PutStringLn<S extends string> =
- S extends infer S extends string
- ? PutString<`${S}\n`>
- : never
+export type PutStringLn<S extends string> = S extends infer S extends string
+ ? PutString<`${S}\n`>
+ : never