diff options
author | Jesse Vincent <jesse@bestpractical.com> | 2010-02-06 18:06:56 -0800 |
---|---|---|
committer | Jesse Vincent <jesse@bestpractical.com> | 2010-02-06 18:06:56 -0800 |
commit | dc08a87be50ba933831af3060c5255da6ce8dea3 (patch) | |
tree | ab2d52780bc753df66bd7d9f403fbdbb96188396 /lib/version | |
parent | 958ff85a3beda75133fa1f15afaccedc1ad73fa0 (diff) | |
download | perl-dc08a87be50ba933831af3060c5255da6ce8dea3.tar.gz |
Removing invalid port L<> links from Version documentation updates.
Diffstat (limited to 'lib/version')
-rw-r--r-- | lib/version/Internals.pod | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/version/Internals.pod b/lib/version/Internals.pod index cb179c04fd..a4f0543fe1 100644 --- a/lib/version/Internals.pod +++ b/lib/version/Internals.pod @@ -102,8 +102,7 @@ a single decimal point, e.g.: In general, Dotted-Decimal Versions permit the greatest amount of freedom to specify a version, whereas Decimal Versions enforce a certain -uniformity. See also L<New Operator> for an additional method of -initializing version objects. +uniformity. Just like L<Decimal Versions>, Dotted-Decimal Versions can be used as L<Alpha Versions>. @@ -678,7 +677,7 @@ has been initialized, you can simply test it directly: $vobj = version->new($something); if ( $vobj ) # true only if $something was non-blank -You can also test whether a version object is an L<Alpha Version>, for +You can also test whether a version object is an alpha version, for example to prevent the use of some feature not present in the main release: |