diff options
author | RedRuM <44142765+zoj613@users.noreply.github.com> | 2019-08-16 09:42:29 +0200 |
---|---|---|
committer | RedRuM <44142765+zoj613@users.noreply.github.com> | 2019-08-16 09:42:29 +0200 |
commit | 31de73ba60e7128aced80e65c8e28b28e06bc7f6 (patch) | |
tree | 4f9b90c70a445f1ebbf0911ca3e052ab2c1e4285 | |
parent | 22b2e4b2fcf3562ef9653e7365195510351fa5ea (diff) | |
download | numpy-31de73ba60e7128aced80e65c8e28b28e06bc7f6.tar.gz |
MAINT: fix incorrect method name
-rw-r--r-- | numpy/random/generator.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/generator.pyx b/numpy/random/generator.pyx index 09c8c0fbc..f7e1801d8 100644 --- a/numpy/random/generator.pyx +++ b/numpy/random/generator.pyx @@ -3333,7 +3333,7 @@ cdef class Generator: 0.0, '', CONS_NONE) # Multivariate distributions: - def _get_multivariate_instance(self): + def _get_multivariate_normal_instance(self): """ multivariate_normal(mean, cov, size=None, check_valid='warn', tol=1e-8) |