typo: actuall -> actual (#25513)

This commit is contained in:
Paolo Rascunà 2018-08-27 10:20:35 +01:00 committed by Arnout Engelen
parent 25079cb568
commit 573e8f0cb2

View file

@ -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 * 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. 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 * 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 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. this before starting to deserialize the object.