summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlaf Alders <olaf@wundersolutions.com>2021-01-29 17:52:37 -0500
committerOlaf Alders <olaf@wundersolutions.com>2021-01-29 17:52:37 -0500
commit406143d3823b0d72019c0b9a0e64115090abe5b0 (patch)
tree425471249314d0f64ebda69721fe338039655316
parentc88da01517e56dc262f618295960c005400d09c1 (diff)
downloaduri-406143d3823b0d72019c0b9a0e64115090abe5b0.tar.gz
URI-5.07v5.07
- s/perl.com/example.com/ in examples and tests (GH#81) (Olaf Alders)
-rw-r--r--Changes2
-rw-r--r--README.md8
2 files changed, 5 insertions, 5 deletions
diff --git a/Changes b/Changes
index 4e6b041..0d6d97d 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,6 @@
Revision history for URI
-{{$NEXT}}
+5.07 2021-01-29 22:52:20Z
- s/perl.com/example.com/ in examples and tests (GH#81) (Olaf Alders)
5.06 2021-01-14 16:01:13Z
diff --git a/README.md b/README.md
index 662a4cb..9a019e3 100644
--- a/README.md
+++ b/README.md
@@ -4,13 +4,13 @@ URI - Uniform Resource Identifiers (absolute and relative)
# SYNOPSIS
- use URI;
+ use URI ();
- $u1 = URI->new("http://www.perl.com");
+ $u1 = URI->new("http://www.example.com");
$u2 = URI->new("foo", "http");
$u3 = $u2->abs($u1);
$u4 = $u3->clone;
- $u5 = URI->new("HTTP://WWW.perl.com:80")->canonical;
+ $u5 = URI->new("HTTP://WWW.example.com:80")->canonical;
$str = $u->as_string;
$str = "$u";
@@ -21,7 +21,7 @@ URI - Uniform Resource Identifiers (absolute and relative)
$frag = $u->fragment;
$u->scheme("ftp");
- $u->host("ftp.perl.com");
+ $u->host("ftp.example.com");
$u->path("cpan/");
# DESCRIPTION