@@ -99,10 +99,9 @@ A dumper is responsible for outputting a string representation of a PHP variable
9999using a:class: `Symfony\\ Component\\ VarDumper\\ Cloner\\ Data ` object as input.
100100The destination and the formatting of this output vary with dumpers and are
101101influenced by two environment variables:
102- If ``DUMP_STRING_LENGTH `` is set, then
103- the length of a string is displayed next to its content.
104- If ``DUMP_LIGHT_ARRAY `` is set,
105- then arrays are not displayed completely.
102+
103+ - If ``DUMP_STRING_LENGTH `` is set, then the length of a string is displayed next to its content.
104+ - If ``DUMP_LIGHT_ARRAY `` is set, then arrays are not displayed completely.
106105
107106This component comes with an:class: `Symfony\\ Component\\ VarDumper\\ Dumper\\ HtmlDumper `
108107for HTML output and a:class: `Symfony\\ Component\\ VarDumper\\ Dumper\\ CliDumper `
@@ -186,7 +185,7 @@ method. They also typically implement the
186185them from re-implementing the logic required to walk through a
187186:class: `Symfony\\ Component\\ VarDumper\\ Cloner\\ Data ` object's internal structure.
188187
189- TheHTMLDumper limits string length and nesting depth of the output.
188+ The:class: ` Symfony \\ Component \\ VarDumper \\ Dumper \\ HtmlDumper ` limits string length and nesting depth of the output.
190189These options can be overriden by providing a third parameter when calling ``dump ``::
191190
192191 use Symfony\Component\VarDumper\Dumper\HtmlDumper;