Fix retrun -> return typo in fpdiff in AppUtils.pm.
authorJason Stephenson <jason@sigio.com>
Tue, 29 Oct 2013 00:00:37 +0000 (20:00 -0400)
committerJason Stephenson <jason@sigio.com>
Thu, 7 Nov 2013 22:03:00 +0000 (17:03 -0500)
Signed-off-by: Jason Stephenson <jason@sigio.com>
Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm

index d00aa78..eeeaeb4 100644 (file)
@@ -2199,7 +2199,7 @@ sub fpdiff {
     while (my $arg = shift(@args)) {
         $result -= $arg * 100;
     }
-    retrun $result / 100;
+    return $result / 100;
 }
 
 1;