doc fixes

This commit is contained in:
Graham Knop 2007-10-16 14:30:04 +00:00
parent f570ca5b5e
commit 21d0c9b13d

View file

@ -40,6 +40,7 @@ This package provides miscellaneous but useful utilities to the WebGUI programme
use WebGUI::Utility;
$string = commify($integer);
$size = formatBytes($integer);
$boolean = isBetween($value, $first, $second);
$boolean = isIn($value, @array);
$boolean = isInSubnet($ip, \@subnets);
makeArrayCommaSafe(\@array);
@ -48,6 +49,7 @@ This package provides miscellaneous but useful utilities to the WebGUI programme
$string = makeTabSafe($string);
$integer = randint($low,$high);
$hashRef = randomizeHash(\%hash);
$rounded = round($number, $digits);
%hash = sortHash(%hash);
%hash = sortHashDescending(%hash);