@@ -301,7 +301,7 @@ Circular references are common when dealing with entity relations::
301301
302302To avoid infinite loops,:class: `Symfony\\ Component\\ Serializer\\ Normalizer\\ GetSetMethodNormalizer `
303303throws a:class: `Symfony\\ Component\\ Serializer\\ Exception\\ CircularReferenceException `
304- when such case is encountered::
304+ when sucha case is encountered::
305305
306306 $member = new Member();
307307 $member->setName('Kévin');
@@ -315,8 +315,8 @@ when such case is encountered::
315315 echo $serializer->serialize($org, 'json'); // Throws a CircularReferenceException
316316
317317The ``setCircularReferenceLimit() `` method of this normalizer sets the number
318- of timesserializing the same objectmust occur before consideringbeing
319- in a circular reference. Its default value is ``1 ``.
318+ of timesit will serialize the same object before consideringit a circular
319+ reference. Its default value is ``1 ``.
320320
321321Instead of throwing an exception, circular references can also be handled
322322by custom callables. This is especially useful when serializing entities