[html-formfu] small typo fix

Thomas L. Shinnick tshinnic at io.com
Wed Sep 19 03:45:37 GMT 2007


Noticed this while reading source - I don't know if it has any impact 
on running code - I'm still marveling too much to write anything...

--- FormFu.pm.395       Tue Sep 18 21:11:57 2007
+++ FormFu.pm.395_      Tue Sep 18 21:38:11 2007
@@ -82,7 +82,7 @@

  __PACKAGE__->mk_get_one_methods(
      qw/
-        deflator filter constraint inflator validator tranformer /
+        deflator filter constraint inflator validator transformer /
  );

  *elements          = \&element;


That's the bare fix, though I'd think it nice to emphasize the 
parallel declarations of these five mk_* calls in row, thus:

--- FormFu.pm.395	Tue Sep 18 21:11:57 2007
+++ FormFu.pm	Tue Sep 18 21:35:46 2007
@@ -61,8 +61,8 @@

  __PACKAGE__->mk_add_methods(
      qw/
-        element deflator filter constraint inflator validator transformer
-        output_processor /
+        deflator filter constraint inflator validator transformer
+        output_processor element /
  );

  __PACKAGE__->mk_single_methods(
@@ -72,7 +72,8 @@

  __PACKAGE__->mk_require_methods(
      qw/
-        deflator filter inflator validator transformer output_processor /
+        deflator filter            inflator validator transformer
+		output_processor /
  );

  __PACKAGE__->mk_get_methods(
@@ -82,7 +83,7 @@

  __PACKAGE__->mk_get_one_methods(
      qw/
-        deflator filter constraint inflator validator tranformer /
+        deflator filter constraint inflator validator transformer /
  );

  *elements          = \&element;



More information about the HTML-FormFu mailing list