@@ -144,18 +144,18 @@ at a regular interval.
144144
145145..caution ::
146146
147- When you create a message withswiftmailer , itgenerate a Swift_Message
148- class. If the swiftmailer service is lazy loaded, itgenerate instead a
149- proxy class named Swift_Message_<someRandomCharacters>.
147+ When you create a message withSwiftMailer , itgenerates a`` Swift_Message ``
148+ class. If the`` swiftmailer `` service is lazy loaded, itgenerates instead a
149+ proxy class named`` Swift_Message_<someRandomCharacters> `` .
150150
151- If you use the memory spool, this change is transparent and has noimpart .
152- But whenyou use the filesystem spool, the message class is serializedon
151+ If you use the memory spool, this change is transparent and has noimpact .
152+ But whenusing the filesystem spool, the message class is serializedin
153153 a file with the randomized class name. The problem is that this random
154- class namechange on every cache clear. So if you send a mail, then you
154+ class namechanges on every cache clear. So if you send a mail and then you
155155 clear the cache, the message will not be unserializable.
156156
157- On the next ``swiftmailer:spool:send `` an error will raise because the
158- class ``Swift_Message_<someRandomCharacters> `` doesn't exist (anymore).
157+ On the nextexecution of ``swiftmailer:spool:send `` an error will raise because
158+ the class ``Swift_Message_<someRandomCharacters> `` doesn't exist (anymore).
159159
160160 The solutions are either to use the memory spool or to load the
161- swiftmailer service without ``lazy `` option (see:doc: `/service_container/lazy_services `).
161+ `` swiftmailer `` service without ``lazy `` option (see:doc: `/service_container/lazy_services `).