You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ Use the `Create` module.
36
36
}
37
37
38
38
// A new PostgresStore with a custom schema (use None if you want the tables to be created in public)
39
-
let postgresStore : PostgresStreamStore= Create.postgresStore config (Some "my-cool-schema")
39
+
let postgresStore : PostgresStreamStore= Create.postgresStore config (Some "my-cool-schema")
40
40
41
41
// Cast to IStreamStore
42
42
let store : IStreamStore = postgresStore :> IStreamStore
@@ -87,7 +87,7 @@ the read operation.
87
87
#### What if I want to read the stream backwards and specify if I want to prefetch the data, and all the cool stuff that already exists in SQLStreamStore?
88
88
89
89
Well each of the above functions has an alternative version call that has a `'` at the end for the function's name. The
90
-
alternative function takes a list of options as a parameters, and in those options you can do what ever you want.
90
+
alternative function takes a list of options as a parameter.
0 commit comments