Fixed typo in comment
alway -> always
This commit is contained in:
parent
5ea2ea74cc
commit
df25007046
Notes:
git
2020-10-10 15:32:46 +09:00
@ -4181,7 +4181,7 @@ VpAlloc(size_t mx, const char *szVal, int strict_p, int exc)
|
|||||||
/* at least mx digits. */
|
/* at least mx digits. */
|
||||||
/* szVal==NULL ==> allocate zero value. */
|
/* szVal==NULL ==> allocate zero value. */
|
||||||
vp = VpAllocReal(mx);
|
vp = VpAllocReal(mx);
|
||||||
/* xmalloc() alway returns(or throw interruption) */
|
/* xmalloc() always returns(or throw interruption) */
|
||||||
vp->MaxPrec = mx; /* set max precision */
|
vp->MaxPrec = mx; /* set max precision */
|
||||||
VpSetZero(vp, 1); /* initialize vp to zero. */
|
VpSetZero(vp, 1); /* initialize vp to zero. */
|
||||||
return vp;
|
return vp;
|
||||||
@ -4357,7 +4357,7 @@ VpAlloc(size_t mx, const char *szVal, int strict_p, int exc)
|
|||||||
nalloc = Max(nalloc, mx);
|
nalloc = Max(nalloc, mx);
|
||||||
mx = nalloc;
|
mx = nalloc;
|
||||||
vp = VpAllocReal(mx);
|
vp = VpAllocReal(mx);
|
||||||
/* xmalloc() alway returns(or throw interruption) */
|
/* xmalloc() always returns(or throw interruption) */
|
||||||
vp->MaxPrec = mx; /* set max precision */
|
vp->MaxPrec = mx; /* set max precision */
|
||||||
VpSetZero(vp, sign);
|
VpSetZero(vp, sign);
|
||||||
VpCtoV(vp, psz, ni, psz + ipf, nf, psz + ipe, ne);
|
VpCtoV(vp, psz, ni, psz + ipf, nf, psz + ipe, ne);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user