Skip to content

Commit b580279

Browse files
committed
fix typo in documentation
1 parent 5c683ff commit b580279

File tree

1 file changed

+1
-1
lines changed
  • src/providers/WorkflowCore.Persistence.MongoDB

1 file changed

+1
-1
lines changed

src/providers/WorkflowCore.Persistence.MongoDB/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ By default (to maintain backwards compatibility), the state object is serialized
2424
This approach has some limitations, for example you cannot control which types will be used in MongoDB for particular fields and you cannot use basic types that are not present in JSON (decimal, timestamp, etc).
2525

2626
To eliminate these limitations, you can use a direct object -> BSON serialization and utilize all serialization possibilities that MongoDb driver provides. You can read more in the [MongoDb CSharp documentation](https://mongodb.github.io/mongo-csharp-driver/1.11/serialization/).
27-
To enable direct serilization you need to register a class map for you state class somewhere in your startup process before you run `WorkflowHost`.
27+
To enable direct serialization you need to register a class map for you state class somewhere in your startup process before you run `WorkflowHost`.
2828

2929
```C#
3030
private void RunWorkflow()

0 commit comments

Comments
 (0)