summaryrefslogtreecommitdiff
path: root/numpy/lib/financial.py
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2020-05-17 12:35:57 +0300
committerGitHub <noreply@github.com>2020-05-17 12:35:57 +0300
commitbd8be5417632c019dbc1d36400052805f95a372c (patch)
treea10a8a468d7d7dd0d25f5b6ac53a7f7b4b37053a /numpy/lib/financial.py
parent125b0c82053c42c43d1b4b36c6184ae71c75c548 (diff)
parent0a2893149e88e5c5bb69a29f78a4ad262a08cd29 (diff)
downloadnumpy-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.py2
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)