Skip to content

Commit

Permalink
Fixed minor typo in user's guide.
Browse files Browse the repository at this point in the history
  • Loading branch information
scopatz committed Mar 18, 2012
1 parent 4ca4c20 commit ade2ba1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/source/usersguide/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ file::
class Particle(IsDescription):
identity = StringCol(itemsize=22, dflt=" ", pos=0) # character String
idnumber = Int16Col(dflt=1, pos = 1) # short integer
speed = Float32Col(dflt=1, pos = 1) # single-precision
speed = Float32Col(dflt=1, pos = 2) # single-precision

# Open a file in "w"rite mode
fileh = openFile("objecttree.h5", mode = "w")
Expand Down
5 changes: 3 additions & 2 deletions tables/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def _table__getautoIndex(self):

_table__autoIndex = property(
_table__getautoIndex , _table__setautoIndex, None,
"""
"""\
Automatically keep column indexes up to date?
Setting this value states whether existing indexes should be
Expand All @@ -174,7 +174,8 @@ def _table__getautoIndex(self):
This value is persistent.
""" )
"""
)


def restorecache(self):
Expand Down

0 comments on commit ade2ba1

Please sign in to comment.