Skip to content

Commit

Permalink
Doc fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaander committed Feb 9, 2024
1 parent f02beb5 commit 32b8fa9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Added
+++++

- Official support for Python 3.12 (#957).
- ``Job.statepoint_mapping`` - cached and read only access to job statepoints. Faster than
- ``Job.cached_statepoint`` - cached and read only access to job statepoints. Faster than
``Job.statepoint`` (#975).

Changed
Expand Down
1 change: 1 addition & 0 deletions doc/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ The Job class

.. autosummary::

Job.cached_statepoint
Job.clear
Job.close
Job.data
Expand Down
7 changes: 4 additions & 3 deletions signac/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,8 +424,8 @@ def cached_statepoint(self):
.. note::
Create and update the statepoint cache by calling
:py:meth:`Project.update_cache` or running``signac update-cache`` on the
command line.
:py:meth:`project.update_cache <signac.Project.update_cache>`
or running ``signac update-cache`` on the command line.
.. seealso::
Expand Down Expand Up @@ -453,7 +453,8 @@ def statepoint(self):
.. tip::
Use :py:attr:`cached_statepoint` for fast access to read the statepoint.
Use :py:attr:`cached_statepoint` for fast read-only access to the
statepoint.
.. warning::
Expand Down

0 comments on commit 32b8fa9

Please sign in to comment.