summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Hietaniemi <Jarkko.Hietaniemi@cc.hut.fi>1997-04-07 00:00:00 +0000
committerChip Salzenberg <chip@atlantic.net>1997-04-07 00:00:00 +0000
commit4ae80833094c9f785b5bbead992abe3e19d8928b (patch)
tree8ade946434fe50a1b4cf36eb3503ce9e2e86ea5e
parentb0399d3c2d4e16b936b7db5a1aa3f810e4a39864 (diff)
downloadperl-4ae80833094c9f785b5bbead992abe3e19d8928b.tar.gz
Fix typos in Math::Trig
-rw-r--r--lib/Math/Trig.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Math/Trig.pm b/lib/Math/Trig.pm
index 4098f34448..f40576a6cc 100644
--- a/lib/Math/Trig.pm
+++ b/lib/Math/Trig.pm
@@ -21,7 +21,7 @@ $VERSION = 1.00;
my @angcnv = qw(rad_to_deg rad_to_grad
deg_to_rad deg_to_grad
- grad_to_rad grad_to_dec);
+ grad_to_rad grad_to_deg);
@EXPORT = (@{$Math::Complex::EXPORT_TAGS{'trig'}},
@angcnv);
@@ -78,7 +78,7 @@ Math::Trig - trigonometric functions
=head1 DESCRIPTION
C<Math::Trig> defines many trigonometric functions not defined by the
-core Perl (which defines only the C<sin()> and C<cos()>. The constant
+core Perl which defines only the C<sin()> and C<cos()>. The constant
B<pi> is also defined as are a few convenience functions for angle
conversions.