You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by st...@apache.org on 2004/12/08 21:41:15 UTC

svn commit: r111310 - /httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestRequest.pm

Author: stas
Date: Wed Dec  8 12:41:15 2004
New Revision: 111310

URL: http://svn.apache.org/viewcvs?view=rev&rev=111310
Log:
a few docs fixes

Modified:
   httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestRequest.pm

Modified: httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestRequest.pm
Url: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestRequest.pm?view=diff&rev=111310&p1=httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestRequest.pm&r1=111309&p2=httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestRequest.pm&r2=111310
==============================================================================
--- httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestRequest.pm	(original)
+++ httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestRequest.pm	Wed Dec  8 12:41:15 2004
@@ -1104,12 +1104,12 @@
 
 =head3 C<module2path>
 
-  $path = module2path($module_name);
+  $path = Apache::TestRequest::module2path($module_name);
 
 Convert a module name to a path, safe for use in the various request
 methods above. e.g. C<::> can't be used in URLs on win32. For example:
 
-  $path = module2path('Foo::Bar');
+  $path = Apache::TestRequest::module2path('Foo::Bar');
 
 returns:
 
@@ -1121,7 +1121,7 @@
 =head3 C<module2url>
 
   $url = Apache::TestRequest::module2url($module);
-  $url = Apache::TestRequest::module2url($module, %options);
+  $url = Apache::TestRequest::module2url($module, \%options);
 
 Convert a module name to a full URL including the current
 configurations C<hostname:port> and sets C<module> accordingly.