Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ Chronological list of authors
- Shubham Mittal
- Charity Grey
- Sai Udayagiri
- Eesh Saxena

External code
-------------
Expand Down
6 changes: 5 additions & 1 deletion package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,15 @@ The rules for this file:
??/??/?? IAlibay, orbeckst, marinegor, tylerjereddy, ljwoods2, marinegor,
spyke7, talagayev, tanii1125, BradyAJohnston, hejamu, jeremyleung521,
harshitgajjela-droid, kunjsinha, aygarwal, jauy123, Dreamstick9,
ollyfutur, Amarendra22, charity-g, ParthUppal523
ollyfutur, Amarendra22, charity-g, ParthUppal523, eeshsaxena

* 2.11.0

Fixes
* Fixed several docstrings that documented parameter names not matching
their signatures: ``util.which`` (``programe`` -> ``program``),
``add_transformations`` (``transform_list`` -> ``transformations``) and
``GuesserBase.is_guessable`` (``guess`` -> ``attr_to_guess``) (PR #5412).
* The `principal_axes` method in :class:`Masses` now uses
`np.linalg.eigh` instead of `np.linalg.eig`, improving numerical
stability. This may lead to slightly different results from previous
Expand Down
2 changes: 1 addition & 1 deletion package/MDAnalysis/coordinates/memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ def add_transformations(self, *transformations):

Parameters
----------
transform_list : list
transformations : list
list of all the transformations that will be applied to the coordinates

See Also
Expand Down
2 changes: 1 addition & 1 deletion package/MDAnalysis/guesser/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def is_guessable(self, attr_to_guess):

Parameters
----------
guess: str
attr_to_guess: str
Attribute to be guessed then added to the Universe

Returns
Expand Down
2 changes: 1 addition & 1 deletion package/MDAnalysis/lib/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ def which(program):

Parameters
----------
programe : str
program : str
name of the executable

Returns
Expand Down
Loading