diff options
author | Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> | 2016-05-24 11:25:49 +0100 |
---|---|---|
committer | Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> | 2016-05-24 11:25:49 +0100 |
commit | 31f7d6b96b4add13808a033633e6dd1e4d791845 (patch) | |
tree | d5b22d4c38b7c43bc5fcdaafb58416223a7fd062 /pod/perlootut.pod | |
parent | 8687a6e6de7ce658ece8673ad56c37d0a1d8cbca (diff) | |
download | perl-31f7d6b96b4add13808a033633e6dd1e4d791845.tar.gz |
Fix class name typo typo in perlootut example
It's spelled correctly in the body text, but the code had it wrong.
Diffstat (limited to 'pod/perlootut.pod')
-rw-r--r-- | pod/perlootut.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlootut.pod b/pod/perlootut.pod index 6d0ae03380..4d07f29043 100644 --- a/pod/perlootut.pod +++ b/pod/perlootut.pod @@ -505,7 +505,7 @@ new C<File>. C<Moose> lets you define roles the same way you define classes: - package HasOnOfSwitch; + package HasOnOffSwitch; use Moose::Role; has is_on => ( |