From: Ken Youens-Clark Date: Fri, 3 Apr 2009 20:53:03 +0000 (+0000) Subject: Fixed typos. X-Git-Tag: v0.11008~216 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=26b2ec84a2df5ea7c0e4a035af76697557cfab59;p=dbsrgits%2FSQL-Translator.git Fixed typos. --- diff --git a/bin/sqlt-graph b/bin/sqlt-graph index 61c8ec4..0dab71f 100755 --- a/bin/sqlt-graph +++ b/bin/sqlt-graph @@ -117,18 +117,18 @@ my %nodeattrs = (); my %graphattrs = (); GetOptions( - 'd|db|f|from =s' => \$db_driver, + 'd|db|f|from=s' => \$db_driver, 'o|output:s' => \$out_file, 'l|layout:s' => \$layout, 'n|node-shape:s' => \$node_shape, 't|output-type:s' => \$output_type, 'height:f' => \$height, 'width:f' => \$width, - 'fontsize =i' => \$fontsize, - 'fontname =s' => \$fontname, - 'nodeattr =s' => \%nodeattrs, - 'edgeattr =s' => \%edgeattrs, - 'graphattr =s' => \%graphattrs, + 'fontsize=i' => \$fontsize, + 'fontname=s' => \$fontname, + 'nodeattr=s' => \%nodeattrs, + 'edgeattr=s' => \%edgeattrs, + 'graphattr=s' => \%graphattrs, 'c|color' => \$add_color, 'no-fields' => \$no_fields, 'natural-join' => \$natural_join,