From 97d95ce1ec95a0505dbd05a2e1b96bf1a875069f Mon Sep 17 00:00:00 2001 From: Alex Hadley Date: Tue, 18 Jun 2024 12:29:43 -0700 Subject: [PATCH] #196 Fix typo in ParamDB.commit_history_with_data() docstring --- paramdb/_database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paramdb/_database.py b/paramdb/_database.py index 2806634..2e64956 100644 --- a/paramdb/_database.py +++ b/paramdb/_database.py @@ -382,7 +382,7 @@ def commit_history_with_data( :py:class:`CommitEntryWithData` objects between the provided start and end indices, which work like slicing a Python list. - See :py:meth:`ParamDB.load` for the behavior of ``decode_json``. + See :py:meth:`ParamDB.load` for the behavior of ``raw_json``. """ with self._Session() as session: select_stmt = self._select_slice(select(_Snapshot), start, end)