aboutsummaryrefslogtreecommitdiff
path: root/examples/file.ts
diff options
context:
space:
mode:
Diffstat (limited to 'examples/file.ts')
-rw-r--r--examples/file.ts8
1 files changed, 1 insertions, 7 deletions
diff --git a/examples/file.ts b/examples/file.ts
index fd5728b..2cc2b7a 100644
--- a/examples/file.ts
+++ b/examples/file.ts
@@ -13,11 +13,5 @@ interface ConstK<Val> extends Kind1<unknown, Val> {
export type main = [
Bind<ReadFile<'./default.nix'>, PrintK>,
- Bind<
- Try<
- ReadFile<'./unicorn'>,
- ConstK<"hello world">
- >,
- PrintK
- >,
+ Bind<Try<ReadFile<'./unicorn'>, ConstK<'hello world'>>, PrintK>
]