From a2bad46b1d4d6bacf2deaca9a15baa655db665b4 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 4 Jul 2018 13:13:15 +1200 Subject: Use assignment not fat-arrow in doc examples --- README.md | 6 +++--- doc/perl_version_bump.txt | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4975533..01e9955 100644 --- a/README.md +++ b/README.md @@ -7,15 +7,15 @@ number of a package-scoped `$VERSION` assignment. So with this format: - our $VERSION => '1.23'; + our $VERSION = '1.23'; Keying a map to `PerlVersionBumpMinor` would yield: - our $VERSION => '1.24'; + our $VERSION = '1.24'; Keying a map to `PerlVersionBumpMajor` would yield: - our $VERSION => '2.00'; + our $VERSION = '2.00'; There is no support for development versions with underscore prefixes like `1.23_001` (yet). diff --git a/doc/perl_version_bump.txt b/doc/perl_version_bump.txt index 918166c..d97a0b4 100644 --- a/doc/perl_version_bump.txt +++ b/doc/perl_version_bump.txt @@ -8,15 +8,15 @@ number of a package-scoped `$VERSION` assignment. So with this format: > - our $VERSION => '1.23'; + our $VERSION = '1.23'; < Keying a map to `PerlVersionBumpMinor` would yield: > - our $VERSION => '1.24'; + our $VERSION = '1.24'; < Keying a map to `PerlVersionBumpMajor` would yield: > - our $VERSION => '2.00'; + our $VERSION = '2.00'; < There is no support for development versions with underscore prefixes like `1.23_001` (yet). -- cgit v1.2.3