File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11Revision history for URI
22
3- {{$NEXT}}
3+ 5.07 2021-01-29 22:52:20Z
44 - s/perl.com/example.com/ in examples and tests (GH#81) (Olaf Alders)
55
665.06 2021-01-14 16:01:13Z
Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ URI - Uniform Resource Identifiers (absolute and relative)
44
55# SYNOPSIS
66
7- use URI;
7+ use URI () ;
88
9- $u1 = URI->new("http://www.perl .com");
9+ $u1 = URI->new("http://www.example .com");
1010 $u2 = URI->new("foo", "http");
1111 $u3 = $u2->abs($u1);
1212 $u4 = $u3->clone;
13- $u5 = URI->new("HTTP://WWW.perl .com:80")->canonical;
13+ $u5 = URI->new("HTTP://WWW.example .com:80")->canonical;
1414
1515 $str = $u->as_string;
1616 $str = "$u";
@@ -21,7 +21,7 @@ URI - Uniform Resource Identifiers (absolute and relative)
2121 $frag = $u->fragment;
2222
2323 $u->scheme("ftp");
24- $u->host("ftp.perl .com");
24+ $u->host("ftp.example .com");
2525 $u->path("cpan/");
2626
2727# DESCRIPTION
You can’t perform that action at this time.
0 commit comments