Avoid long lines in documentation

This commit is contained in:
Juan Jose Comellas 2012-02-02 23:46:29 -03:00
parent 3560ed6df7
commit 69b51ebf33

View File

@ -250,8 +250,8 @@ e.g. Given an option specification list with the following format:
``` erlang ``` erlang
OptSpecList = OptSpecList =
[ [
{define, $D, "define", string, "Define a variable"}, {define, $D, "define", string, "Define a variable"},
{verbose, $v, "verbose", integer, "Verbosity level"} {verbose, $v, "verbose", integer, "Verbosity level"}
]. ].
``` ```
@ -282,9 +282,9 @@ For example, with the following option specifications:
``` erlang ``` erlang
OptSpecList = OptSpecList =
[ [
{xml, $x, "xml", undefined, "Output data as XML"}, {xml, $x, "xml", undefined, "Output data as XML"},
{dbname, undefined, undefined, string, "Database name"}, {dbname, undefined, undefined, string, "Database name"},
{output_file, undefined, undefined, string, "File where the data will be saved to"} {output_file, undefined, undefined, string, "File where the data will be saved to"}
]. ].
``` ```