@@ -257,7 +257,7 @@ InputArgument::OPTIONAL The argument is optional and therefore can be omitt
257257InputArgument::IS_ARRAY Allows to specify an indefinite number of arguments, must be used at the end of the argument list
258258=========================== =================================================================================================
259259
260- You can combine IS_ARRAY with REQUIRED and OPTIONAL like this::
260+ You can combine`` IS_ARRAY `` with`` REQUIRED `` and`` OPTIONAL `` like this::
261261
262262 $this
263263 // ...
@@ -335,7 +335,7 @@ InputOption::VALUE_REQUIRED This value is required (e.g. ``--iterations=5``), t
335335InputOption::VALUE_OPTIONAL This option may or may not have a value (e.g. ``yell `` or ``yell=loud ``)
336336=========================== =====================================================================================
337337
338- You can combine VALUE_IS_ARRAY with VALUE_REQUIRED or VALUE_OPTIONAL like this:
338+ You can combine`` VALUE_IS_ARRAY `` with`` VALUE_REQUIRED `` or`` VALUE_OPTIONAL `` like this:
339339
340340..code-block ::php
341341