Skip to content

Commit

Permalink
typo: actuall -> actual (#25513)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paolo Rascunà authored and raboof committed Aug 27, 2018
1 parent 25079cb commit 573e8f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion akka-docs/src/main/paradox/persistence-schema-evolution.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ This has two notable *downsides*:
* first, that the deserialization was actually performed, so we spent some of out time budget on the
deserialization, even though the event does not contribute anything to the persistent actors state.
* second, that we are *unable to remove the event class* from the system – since the serializer still needs to create
the actuall instance of it, as it does not know it will not be used.
the actual instance of it, as it does not know it will not be used.

The solution to these problems is to use a serializer that is aware of that event being no longer needed, and can notice
this before starting to deserialize the object.
Expand Down

0 comments on commit 573e8f0

Please sign in to comment.