summaryrefslogtreecommitdiff
path: root/dist/Math-BigInt-FastCalc/t
diff options
context:
space:
mode:
authorPeter J. Acklam) (via RT <perlbug-followup@perl.org>2011-01-06 23:12:42 -0800
committerAbigail <abigail@abigail.be>2011-01-07 11:29:08 +0100
commitc4a6f826b3676d1fdbd9972a9d0a8f11c02d003d (patch)
treef246b362bc76c9dac721de18db8432c7b4bdc937 /dist/Math-BigInt-FastCalc/t
parent2a467c83e2ce01bdf8cdda501e2e3df4b188134f (diff)
downloadperl-c4a6f826b3676d1fdbd9972a9d0a8f11c02d003d.tar.gz
Fix typos (spelling errors) in dist/*
# New Ticket Created by (Peter J. Acklam) # Please include the string: [perl #81888] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=81888 > Signed-off-by: Abigail <abigail@abigail.be>
Diffstat (limited to 'dist/Math-BigInt-FastCalc/t')
-rw-r--r--dist/Math-BigInt-FastCalc/t/bigintfc.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/Math-BigInt-FastCalc/t/bigintfc.t b/dist/Math-BigInt-FastCalc/t/bigintfc.t
index a51610c416..c3909176f5 100644
--- a/dist/Math-BigInt-FastCalc/t/bigintfc.t
+++ b/dist/Math-BigInt-FastCalc/t/bigintfc.t
@@ -302,7 +302,7 @@ $x = $C->_new("11"); is ($C->_str($C->_fac($x)),'39916800');
$x = $C->_new("12"); is ($C->_str($C->_fac($x)),'479001600');
$x = $C->_new("13"); is ($C->_str($C->_fac($x)),'6227020800');
-# test that _fac modifes $x in place for small arguments
+# test that _fac modifies $x in place for small arguments
$x = $C->_new("3"); $C->_fac($x); is ($C->_str($x),'6');
$x = $C->_new("13"); $C->_fac($x); is ($C->_str($x),'6227020800');