@@ -247,22 +247,22 @@ There are several types of normalizers available::
247247
248248* The :class: `Symfony\\ Component\\ Serializer\\ Normalizer\\ GetSetMethodNormalizer `
249249
250- This normalizer reads the content of the class by calling the "getters" (public
251- methods starting with "get"). It will denormalize data by calling the constructor
252- and the "setters" (public methods starting with "set").
250+ This normalizer reads the content of the class by calling the "getters" (public
251+ methods starting with "get"). It will denormalize data by calling the constructor
252+ and the "setters" (public methods starting with "set").
253253
254- Objects are serialized to a map of property names (method name stripped of the "get"
255- prefix and converted to lower case) to property values.
254+ Objects are serialized to a map of property names (method name stripped of the "get"
255+ prefix and converted to lower case) to property values.
256256
257257* The :class: `Symfony\\ Component\\ Serializer\\ Normalizer\\ PropertyNormalizer `
258258
259- .. versionadded :: 2.6
260- The :class: `Symfony\\ Component\\ Serializer\\ Normalizer\\ PropertyNormalizer `
261- class was introduced in Symfony 2.6.
259+ .. versionadded :: 2.6
260+ The :class: `Symfony\\ Component\\ Serializer\\ Normalizer\\ PropertyNormalizer `
261+ class was introduced in Symfony 2.6.
262262
263- This normalizer directly reads and writes public properties as well as
264- **private and protected ** properties. Objects are serialized to a map of
265- property names to property values.
263+ This normalizer directly reads and writes public properties as well as
264+ **private and protected ** properties. Objects are serialized to a map of
265+ property names to property values.
266266
267267Handling Circular References
268268----------------------------
0 commit comments