DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=36211>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36211

           Summary: [math][patch] Comments Changes
           Product: Commons
           Version: unspecified
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P1
         Component: Math
        AssignedTo: [email protected]
        ReportedBy: [EMAIL PROTECTED]


Index: TrapezoidIntegrator.java
===================================================================
--- TrapezoidIntegrator.java    (revision 233018)
+++ TrapezoidIntegrator.java    (working copy)
@@ -20,7 +20,7 @@
 
 /**
  * Implements the <a href="http://mathworld.wolfram.com/TrapezoidalRule.html";>
- * Trapezoidal Rule</a> for integrating of real univariate functions. For
+ * Trapezoidal Rule</a> for integration of real univariate functions. For
  * reference, see <b>Introduction to Numerical Analysis</b>, ISBN 038795452X,
  * chapter 3.
  * <p>
@@ -39,7 +39,7 @@
     /**
      * Construct an integrator for the given function.
      * 
-     * @param f function to solve
+     * @param f function to integrate
      */
     public TrapezoidIntegrator(UnivariateRealFunction f) {
         super(f, 64);
Index: SimpsonIntegrator.java
===================================================================
--- SimpsonIntegrator.java      (revision 233018)
+++ SimpsonIntegrator.java      (working copy)
@@ -20,7 +20,7 @@
 
 /**
  * Implements the <a href="http://mathworld.wolfram.com/SimpsonsRule.html";>
- * Simpson's Rule</a> for integrating of real univariate functions. For
+ * Simpson's Rule</a> for integration of real univariate functions. For
  * reference, see <b>Introduction to Numerical Analysis</b>, ISBN 038795452X,
  * chapter 3.
  * <p>
@@ -37,7 +37,7 @@
     /**
      * Construct an integrator for the given function.
      * 
-     * @param f function to solve
+     * @param f function to integrate
      */
     public SimpsonIntegrator(UnivariateRealFunction f) {
         super(f, 64);
Index: RombergIntegrator.java
===================================================================
--- RombergIntegrator.java      (revision 233018)
+++ RombergIntegrator.java      (working copy)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2003-2005 The Apache Software Foundation.
+ * Copyright 2005 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@
 
 /**
  * Implements the <a 
href="http://mathworld.wolfram.com/RombergIntegration.html";>
- * Romberg Algorithm</a> for integrating of real univariate functions. For
+ * Romberg Algorithm</a> for integration of real univariate functions. For
  * reference, see <b>Introduction to Numerical Analysis</b>, ISBN 038795452X,
  * chapter 3.
  * <p>
@@ -38,7 +38,7 @@
     /**
      * Construct an integrator for the given function.
      * 
-     * @param f function to solve
+     * @param f function to integrate
      */
     public RombergIntegrator(UnivariateRealFunction f) {
         super(f, 32);

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to