You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2020/06/03 10:11:30 UTC

[commons-math] 06/07: Userguide.

This is an automated email from the ASF dual-hosted git repository.

erans pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-math.git

commit 26d7e55974d3e335bf937264ef01a455069fe019
Author: Gilles Sadowski <gi...@gmail.com>
AuthorDate: Wed Jun 3 11:58:43 2020 +0200

    Userguide.
---
 src/site/xdoc/userguide/utilities.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/site/xdoc/userguide/utilities.xml b/src/site/xdoc/userguide/utilities.xml
index f94018a..89aad0e 100644
--- a/src/site/xdoc/userguide/utilities.xml
+++ b/src/site/xdoc/userguide/utilities.xml
@@ -94,7 +94,7 @@
     Continued Fraction, equation (1)</a> from MathWorld.
   </p>
   <p>
-    As an example, the constant Pi can be computed using a <a href="http://functions.wolfram.com/Constants/Pi/10/0002/">continued fraction</a>.  The following anonymous class
+    As an example, the constant &pi; can be computed using a <a href="http://functions.wolfram.com/Constants/Pi/10/0002/">continued fraction</a>.  The following anonymous class
     provides the implementation:
     <source>ContinuedFraction c = new ContinuedFraction() {
     public double getA(int n, double x) {
@@ -111,8 +111,8 @@
 }</source>
   </p>
   <p>
-    Then, to evalute Pi, simply call any of the <code>evalute</code> methods
-    (Note, the point of evaluation in this example is meaningless since Pi is a
+    Then, to evalute &pi;, simply call any of the <code>evalute</code> methods
+    (Note, the point of evaluation in this example is meaningless since &pi; is a
     constant).
   </p>
   <p>