diff --git a/serializer.rst b/serializer.rst
index 6e20a651341..b7deb6f5bff 100644
--- a/serializer.rst
+++ b/serializer.rst
@@ -1571,6 +1571,13 @@ to ``true``::
     ]);
     // $jsonContent contains {"name":"Jane Doe"}
 
+Preserving Empty Objetcs
+~~~~~~~~~~~~~~~~~~~~~~~~
+
+By default, the Serializer will transform an empty array to `[]`.
+You can change this behavior by setting the ``AbstractObjectNormalizer::PRESERVE_EMPTY_OBJECTS`` context option
+to ``true``, when the value is `\ArrayObject()` the serialization would be `{}`.
+
 Handling Uninitialized Properties
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~