@@ -108,13 +108,13 @@ class Atom(object):
108108
109109 # instance attributes that have immutable default values
110110 element = ""
111- """str : Default values of `element`."""
111+ """Str : Default values of `element`."""
112112
113113 label = ""
114- """str : Default values of `label`."""
114+ """Str : Default values of `label`."""
115115
116116 occupancy = 1.0
117- """float : Default values of `occupancy`."""
117+ """Float : Default values of `occupancy`."""
118118
119119 _anisotropy = False
120120 lattice = None
@@ -294,8 +294,8 @@ def xyz_cartn(self):
294294 coordinates.
295295
296296 This is computed from fractional coordinates `xyz` and the
297- current `lattice` setup. Assignment to *xyz_cartn* or
298- its components is applied on fractional coordinates `xyz`.
297+ current `lattice` setup. Assignment to *xyz_cartn* or its
298+ components is applied on fractional coordinates `xyz`.
299299 """
300300 if not self .lattice :
301301 rv = self .xyz
@@ -315,7 +315,7 @@ def xyz_cartn(self, value):
315315
316316 @property
317317 def anisotropy (self ):
318- """bool : Flag for allowing anisotropic displacement parameters.
318+ """Bool : Flag for allowing anisotropic displacement parameters.
319319
320320 When ``False`` the tensor of thermal displacement parameters `U`
321321 must be isotropic and only its diagonal elements are taken into
@@ -439,7 +439,8 @@ def _set_uij(self, i, j, value):
439439
440440 @property
441441 def Uisoequiv (self ):
442- """float : The isotropic displacement parameter or an equivalent value.
442+ """Float : The isotropic displacement parameter or an equivalent
443+ value.
443444
444445 Setting a new value rescales tensor `U` so it yields equivalent
445446 direction-averaged displacements.
@@ -533,7 +534,8 @@ def Uisoequiv(self, value):
533534
534535 @property
535536 def Bisoequiv (self ):
536- """float : The Debye-Waller isotropic displacement or an equivalent value.
537+ """Float : The Debye-Waller isotropic displacement or an
538+ equivalent value.
537539
538540 This equals ``8 * pi**2 * Uisoequiv``. Setting a new value
539541 rescales `U` tensor to yield equivalent direction-average of
@@ -575,7 +577,7 @@ def __init__(self, atom):
575577
576578 @property
577579 def asarray (self ):
578- """ndarray : This array viewed as standard numpy array."""
580+ """Ndarray : This array viewed as standard numpy array."""
579581 return self .view (numpy .ndarray )
580582
581583 def __setitem__ (self , idx , value ):
0 commit comments