# New Ticket Created by  "Paul Cochrane" 
# Please include the string:  [perl #40510]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=40510 >

Hi,

This patch corrects some of the pod in the t/codingstd/c_code_coda.t test.

Regards,

Paul
Index: t/codingstd/c_code_coda.t
===================================================================
--- t/codingstd/c_code_coda.t	(revision 14877)
+++ t/codingstd/c_code_coda.t	(working copy)
@@ -11,19 +11,19 @@
 
 =head1 NAME
 
-t/codingstd/code_coda.t - checks for editor hint coda in source
+t/codingstd/c_code_coda.t - checks for editor hint coda in C source
 
 =head1 SYNOPSIS
 
     # test all files
-    % prove t/codingstd/code_coda.t
+    % prove t/codingstd/c_code_coda.t
 
     # test specific files
-    % perl t/codingstd/code_coda.t src/foo.c include/parrot/bar.h
+    % perl t/codingstd/c_code_coda.t src/foo.c include/parrot/bar.h
 
 =head1 DESCRIPTION
 
-Checks that all source files have the proper editor hints coda,
+Checks that all C language source files have the proper editor hints coda,
 as specified in PDD07.
 
 =head1 SEE ALSO
@@ -92,7 +92,7 @@
     return (
         map( $_->files_of_type('C code'),   $DIST->c_source_file_directories ),
         map( $_->files_of_type('C header'), $DIST->c_header_file_directories ),
-        map( $_->files_of_type('PMC code'),   $DIST->pmc_source_file_directories ),
+        map( $_->files_of_type('PMC code'), $DIST->pmc_source_file_directories ),
     );
 }
 

Reply via email to