diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-04-03 16:02:33 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-04-03 16:02:33 -0700 |
commit | ca77e31947b74feded3d69a282e638fa2e9ebf7c (patch) | |
tree | 47abbe6403cee151a8439021e0574b4863612c28 /doc/sphinxext/numpydoc/tests | |
parent | 961a28f828fd7075af1e548a294c1443fdf4a215 (diff) | |
parent | 3830fcc99443cd479d4dd3fea5217c75396f9f3f (diff) | |
download | numpy-ca77e31947b74feded3d69a282e638fa2e9ebf7c.tar.gz |
Merge pull request #460 from endolith/regex_formatting
DOC: Formatting fixes using regex
Diffstat (limited to 'doc/sphinxext/numpydoc/tests')
-rw-r--r-- | doc/sphinxext/numpydoc/tests/test_docscrape.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/sphinxext/numpydoc/tests/test_docscrape.py b/doc/sphinxext/numpydoc/tests/test_docscrape.py index ce99754da..877d33980 100644 --- a/doc/sphinxext/numpydoc/tests/test_docscrape.py +++ b/doc/sphinxext/numpydoc/tests/test_docscrape.py @@ -25,7 +25,7 @@ doc_txt = '''\ (1+2+3)/3 - cov : (N,N) ndarray + cov : (N, N) ndarray Covariance matrix of the distribution. shape : tuple of ints Given a shape of, for example, (m,n,k), m*n*k samples are @@ -63,7 +63,6 @@ doc_txt = '''\ Notes ----- - Instead of specifying the full covariance matrix, popular approximations include: @@ -197,7 +196,7 @@ mean : (N,) ndarray (1+2+3)/3 -cov : (N,N) ndarray +cov : (N, N) ndarray Covariance matrix of the distribution. shape : tuple of ints Given a shape of, for example, (m,n,k), m*n*k samples are |