doc tweak (from Michael G Schwern <schwern@pobox.com>)
Gurusamy Sarathy [Wed, 2 Feb 2000 06:21:34 +0000 (06:21 +0000)]
p4raw-id: //depot/perl@4946

lib/Text/Tabs.pm

index c431019..933f917 100644 (file)
@@ -73,11 +73,11 @@ Text::Tabs -- expand and unexpand tabs per the unix expand(1) and unexpand(1)
 
 =head1 SYNOPSIS
 
-use Text::Tabs;
+    use Text::Tabs;
 
-$tabstop = 4;
-@lines_without_tabs = expand(@lines_with_tabs);
-@lines_with_tabs = unexpand(@lines_without_tabs);
+    $tabstop = 4;
+    @lines_without_tabs = expand(@lines_with_tabs);
+    @lines_with_tabs = unexpand(@lines_without_tabs);
 
 =head1 DESCRIPTION