@@ -39,27 +39,27 @@ class Atom(object):
3939
4040 Parameters
4141 ----------
42- atype : str or Atom, optional
42+ atype : str or Atom, Optional
4343 The string atom type to be set as the `element` attribute.
4444 By default an empty string. When of the *Atom* type, create
4545 a copy of *atype* and adjust it per other arguments.
46- xyz : ndarray, optional
46+ xyz : numpy. ndarray, Optional
4747 Fractional coordinates within the associated `lattice`.
4848 By default ``[0, 0, 0]``.
49- label : str, optional
49+ label : str, Optional
5050 A unique string `label` for referring to this Atom.
5151 By default an empty string.
52- occupancy : float, optional
52+ occupancy : float, Optional
5353 The initial `occupancy` of this atom, by default ``1``.
54- anisotropy : bool, optional
54+ anisotropy : bool, Optional
5555 The flag for anisotropic thermal displacements parameters.
5656 This overrides `anisotropy` implied by presence of the
5757 *U* or *Uisoequiv* arguments. Defaults to ``False``
5858 when not set in any other way.
59- U : ndarray, optional
59+ U : numpy. ndarray, Optional
6060 The 3x3 matrix of anisotropic thermal displacement parameters.
6161 When present `anisotropy` defaults to ``True``.
62- Uisoequiv: float, optional
62+ Uisoequiv: float, Optional
6363 The isotropic atomic displacement parameter. The `anisotropy`
6464 defaults to ``False`` when present. Only one of the *U* and
6565 *Uisoequiv* arguments may be provided at the same time. Assume
@@ -72,7 +72,7 @@ class Atom(object):
7272 ----------
7373 element : str
7474 The string type of the atom. An element or ion symbol.
75- xyz : ndarray
75+ xyz : numpy. ndarray
7676 The fractional coordinates in the associated `lattice`.
7777 label : str
7878 A unique string label referring to this atom, for example, "C_1".
@@ -211,7 +211,7 @@ def __copy__(self, target=None):
211211
212212 Parameters
213213 ----------
214- target : Atom, optional
214+ target : Atom, Optional
215215 An already existing Atom object to be updated to a duplicate
216216 of this Atom. Create a new Atom object when not specified.
217217 This facilitates extension of the `__copy__` method
@@ -254,7 +254,7 @@ def __copy__(self, target=None):
254254 @property
255255 def xyz_cartn (self ):
256256 """
257- ndarray: Atom position in absolute Cartesian coordinates.
257+ numpy. ndarray: Atom position in absolute Cartesian coordinates.
258258
259259 This is computed from fractional coordinates `xyz` and the
260260 current `lattice` setup. Assignment to *xyz_cartn* or
@@ -305,7 +305,7 @@ def anisotropy(self, value):
305305 @property
306306 def U (self ):
307307 """
308- ndarray : The 3x3 matrix of anisotropic atomic displacements.
308+ numpy. ndarray : The 3x3 matrix of anisotropic atomic displacements.
309309
310310 For isotropic displacements (when `anisotropy` is ``False``)
311311 assignment to *U* uses only the first ``Unew[0, 0]`` element
0 commit comments