diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-05-17 12:35:57 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-17 12:35:57 +0300 |
commit | bd8be5417632c019dbc1d36400052805f95a372c (patch) | |
tree | a10a8a468d7d7dd0d25f5b6ac53a7f7b4b37053a /numpy/lib/financial.py | |
parent | 125b0c82053c42c43d1b4b36c6184ae71c75c548 (diff) | |
parent | 0a2893149e88e5c5bb69a29f78a4ad262a08cd29 (diff) | |
download | numpy-bd8be5417632c019dbc1d36400052805f95a372c.tar.gz |
Merge pull request #16269 from tbm/typo
DOC: Fix typos and cosmetic issues
Diffstat (limited to 'numpy/lib/financial.py')
-rw-r--r-- | numpy/lib/financial.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/financial.py b/numpy/lib/financial.py index b055bb1ec..709a79dc0 100644 --- a/numpy/lib/financial.py +++ b/numpy/lib/financial.py @@ -466,7 +466,7 @@ def _rbl(rate, per, pmt, pv, when): This function is here to simply have a different name for the 'fv' function to not interfere with the 'fv' keyword argument within the 'ipmt' function. It is the 'remaining balance on loan' which might be useful as - it's own function, but is easily calculated with the 'fv' function. + its own function, but is easily calculated with the 'fv' function. """ return fv(rate, (per - 1), pmt, pv, when) |