summaryrefslogtreecommitdiff
path: root/pod/perlfaq9.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-04-08 18:56:58 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-04-08 18:56:58 +0000
commit4e2bd96b8f41c8a7db341e554539ef515fe4ca3f (patch)
treede226ce5a9d015aefd62d1b704bb24f8d232801f /pod/perlfaq9.pod
parentc3d1d03a9b998282aedf81d83aa34f20ceed6a88 (diff)
downloadperl-4e2bd96b8f41c8a7db341e554539ef515fe4ca3f.tar.gz
FAQ sync. (Ignoring the few URL differences for now.)
p4raw-id: //depot/perl@15813
Diffstat (limited to 'pod/perlfaq9.pod')
-rw-r--r--pod/perlfaq9.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfaq9.pod b/pod/perlfaq9.pod
index 947c769f8e..e643c33981 100644
--- a/pod/perlfaq9.pod
+++ b/pod/perlfaq9.pod
@@ -1,6 +1,6 @@
=head1 NAME
-perlfaq9 - Networking ($Revision: 1.7 $, $Date: 2002/01/28 04:17:27 $)
+perlfaq9 - Networking ($Revision: 1.9 $, $Date: 2002/04/07 18:46:13 $)
=head1 DESCRIPTION
@@ -253,7 +253,7 @@ Basically, the following substitutions do it:
s/([^\w()'*~!.-])/sprintf '%%%02x', ord $1/eg; # encode
- s/%([A-Fa-f\d]{2})/chr hex $1/eg; # decode
+ s/%([A-Fa-f\d]{2})/chr hex $1/eg; # decode
However, you should only apply them to individual URI components, not
the entire URI, otherwise you'll lose information and generally mess