Skip to content

Commit 406143d

Browse files
committed
URI-5.07
- s/perl.com/example.com/ in examples and tests (GH#81) (Olaf Alders)
1 parent c88da01 commit 406143d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Changes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Revision 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

66
5.06 2021-01-14 16:01:13Z

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)