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 1
1
Revision history for URI
2
2
3
- {{$NEXT}}
3
+ 5.07 2021-01-29 22:52:20Z
4
4
- s/perl.com/example.com/ in examples and tests (GH#81) (Olaf Alders)
5
5
6
6
5.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)
4
4
5
5
# SYNOPSIS
6
6
7
- use URI;
7
+ use URI () ;
8
8
9
- $u1 = URI->new("http://www.perl .com");
9
+ $u1 = URI->new("http://www.example .com");
10
10
$u2 = URI->new("foo", "http");
11
11
$u3 = $u2->abs($u1);
12
12
$u4 = $u3->clone;
13
- $u5 = URI->new("HTTP://WWW.perl .com:80")->canonical;
13
+ $u5 = URI->new("HTTP://WWW.example .com:80")->canonical;
14
14
15
15
$str = $u->as_string;
16
16
$str = "$u";
@@ -21,7 +21,7 @@ URI - Uniform Resource Identifiers (absolute and relative)
21
21
$frag = $u->fragment;
22
22
23
23
$u->scheme("ftp");
24
- $u->host("ftp.perl .com");
24
+ $u->host("ftp.example .com");
25
25
$u->path("cpan/");
26
26
27
27
# DESCRIPTION
You can’t perform that action at this time.
0 commit comments