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
OptSpecList =
[
{define, $D, "define", string, "Define a variable"},
{verbose, $v, "verbose", integer, "Verbosity level"}
{define, $D, "define", string, "Define a variable"},
{verbose, $v, "verbose", integer, "Verbosity level"}
].
```
@ -282,9 +282,9 @@ For example, with the following option specifications:
``` erlang
OptSpecList =
[
{xml, $x, "xml", undefined, "Output data as XML"},
{dbname, undefined, undefined, string, "Database name"},
{output_file, undefined, undefined, string, "File where the data will be saved to"}
{xml, $x, "xml", undefined, "Output data as XML"},
{dbname, undefined, undefined, string, "Database name"},
{output_file, undefined, undefined, string, "File where the data will be saved to"}
].
```