diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2010-05-19 00:09:11 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2010-05-19 00:09:11 +0000 |
commit | 9da4ba72a84b935fad86069e46859293b1814fd1 (patch) | |
tree | 3ce994651f2c05701690fec22778fbe551ae8d22 /mpfr.texi | |
parent | 55ceb869eb8f8e13538f2eac0b24cf850e0f6273 (diff) | |
download | mpfr-9da4ba72a84b935fad86069e46859293b1814fd1.tar.gz |
[mpfr.texi] Corrected C terminology (table -> array).
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@6807 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mpfr.texi')
-rw-r--r-- | mpfr.texi | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1959,8 +1959,8 @@ not call these functions directly (they could have been called internally). @deftypefun int mpfr_sum (mpfr_t @var{rop}, mpfr_ptr const @var{tab}[], unsigned long @var{n}, mpfr_rnd_t @var{rnd}) Set @var{rop} to the sum of all elements of @var{tab}, whose size is @var{n}, -rounded in the direction @var{rnd}. Warning, @var{tab} is a table of pointers -to mpfr_t, not a table of mpfr_t (preliminary interface). If the returned +rounded in the direction @var{rnd}. Warning, @var{tab} is an array of pointers +to mpfr_t, not an array of mpfr_t (preliminary interface). If the returned @code{int} value is zero, @var{rop} is guaranteed to be the exact sum; otherwise @var{rop} might be smaller than, equal to, or larger than the exact sum (in accordance to the rounding mode). |