diff options
author | Fred Drake <fdrake@acm.org> | 2000-04-03 04:51:13 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-04-03 04:51:13 (GMT) |
commit | e15956b46515dfc5cf258b7109e2b7b330c27e5f (patch) | |
tree | 0776ca09eb49808534b37e8f5320af8da5c0290c /Doc/perl/SynopsisTable.pm | |
parent | 20082d92f2e5fc7736b3fb1839380cc7c0133165 (diff) | |
download | cpython-e15956b46515dfc5cf258b7109e2b7b330c27e5f.zip cpython-e15956b46515dfc5cf258b7109e2b7b330c27e5f.tar.gz cpython-e15956b46515dfc5cf258b7109e2b7b330c27e5f.tar.bz2 |
Merged changes from the 1.5.2p2 release.
Diffstat (limited to 'Doc/perl/SynopsisTable.pm')
-rw-r--r-- | Doc/perl/SynopsisTable.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/perl/SynopsisTable.pm b/Doc/perl/SynopsisTable.pm index e12f2e7..fb063d4 100644 --- a/Doc/perl/SynopsisTable.pm +++ b/Doc/perl/SynopsisTable.pm @@ -38,14 +38,14 @@ sub show{ sub tohtml{ my $self = shift; - my $data = "<table class=\"synopsistable\">\n"; + my $data = "<table class='synopsistable'>\n"; my $name; foreach $name (split /,/, $self->{names}) { my($key,$type,$synopsis) = $self->get($name); - my $link = "<a href=\"module-$key.html\">"; - $data .= (" <tr>" - . "<td><b><tt class=module>$link$name</a></tt></b></td>\n" - . " <td class=synopsis>$synopsis</td></tr>\n"); + my $link = "<a href='module-$key.html'>"; + $data .= (' <tr>' + . "<td><b><tt class='module'>$link$name</a></tt></b></td>\n" + . " <td class='synopsis'>$synopsis</td></tr>\n"); } $data .= "</table>\n"; $data; |