From 0dde42deffde17e5289377a533a15c61718d6aa8 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Mon, 28 Oct 2013 20:00:37 -0400 Subject: [PATCH] Fix retrun -> return typo in fpdiff in AppUtils.pm. Signed-off-by: Jason Stephenson --- Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm index d00aa78de8..eeeaeb480a 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm @@ -2199,7 +2199,7 @@ sub fpdiff { while (my $arg = shift(@args)) { $result -= $arg * 100; } - retrun $result / 100; + return $result / 100; } 1; -- 2.11.0