Skip to content

Commit

Permalink
docs: Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
iamchanii committed Jun 22, 2023
1 parent 70a43aa commit 1098345
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ new SchemaBuilder<{
defaultLayer: (context) => Layer.succeed(Random, {}),
defaultContext: (context) => Context.empty(),
defaultServices: (context) => [
[Random, (_context) => Random.of({ next: () => Effect.succeed(0.5) })],
[Random, Random.of({ next: () => Effect.succeed(0.5) })],
],
},
});
Expand All @@ -37,7 +37,7 @@ t.effect({
type: 'String',
effect: {
services: (_context) => [
[Random, (_context) => Random.of({ next: () => Effect.succeed(0.5) })],
[Random, Random.of({ next: () => Effect.succeed(0.5) })],
],
context: (_context) => Context.empty({}),
layer: (_context) => Layer.succeed({}),
Expand Down

0 comments on commit 1098345

Please sign in to comment.