summaryrefslogtreecommitdiff
path: root/doc/mpc.texi
diff options
context:
space:
mode:
Diffstat (limited to 'doc/mpc.texi')
-rw-r--r--doc/mpc.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/mpc.texi b/doc/mpc.texi
index 12650ea..ac3fc76 100644
--- a/doc/mpc.texi
+++ b/doc/mpc.texi
@@ -627,8 +627,8 @@ Set @var{rop} to Nan+i*NaN.
@end deftypefun
@deftypefun void mpc_swap (mpc_t @var{op1}, mpc_t @var{op2})
-Swap the values of @var{op1} and @var{op2} efficiently. Warning: the
-precisions are exchanged too; in case the precisions are different,
+Swap the values of @var{op1} and @var{op2} efficiently. Warning: The
+precisions are exchanged, too; in case these are different,
@code{mpc_swap} is thus not equivalent to three @code{mpc_set} calls using a
third auxiliary variable.
@end deftypefun
@@ -1058,7 +1058,7 @@ Value}).
For instance, you can define mpc_set_ui_fr as follows:
@example
-int mpc_set_ui_d (mpc_t rop, long int re, double im, mpc_rnd_t rnd)
+int mpc_set_ui_fr (mpc_t rop, long int re, double im, mpc_rnd_t rnd)
MPC_SET_X_Y (ui, fr, rop, re, im, rnd);
@end example
@end defmac