]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
A few doc corrections
authorShlomi Fish <shlomif@iglu.org.il>
Sat, 6 Mar 2010 00:32:39 +0000 (01:32 +0100)
committerVincent Pit <vince@profvince.com>
Sat, 6 Mar 2010 00:35:10 +0000 (01:35 +0100)
lib/Variable/Magic.pm

index 991bca17b9339bc0ab1d1a7eeb28ad1475673e10..bdbb97e8acc365adb5144d31aa3a5e85009b36b9 100644 (file)
@@ -50,8 +50,8 @@ BEGIN {
 
 =head1 DESCRIPTION
 
-Magic is Perl way of enhancing objects.
-This mechanism lets the user add extra data to any variable and hook syntaxical operations (such as access, assignment or destruction) that can be applied to it.
+Magic is Perl's way of enhancing variables.
+This mechanism lets the user add extra data to any variable and hook syntactical operations (such as access, assignment or destruction) that can be applied to it.
 With this module, you can add your own magic to any variable without having to write a single line of XS.
 
 You'll realize that these magic variables look a lot like tied variables.
@@ -72,7 +72,7 @@ You attach it to variables, not values (as for blessed references).
 
 It doesn't replace the original semantics.
 
-Magic callbacks usually trigger before the original action take place, and can't prevent it to happen.
+Magic callbacks usually get triggered before the original action takes place, and can't prevent it from happening.
 This also makes catching individual events easier than with C<tie>, where you have to provide fallbacks methods for all actions by usually inheriting from the correct C<Tie::Std*> class and overriding individual methods in your own class.
 
 =item *