aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/storage/util
diff options
context:
space:
mode:
Diffstat (limited to 'libbe/storage/util')
-rw-r--r--libbe/storage/util/properties.py2
-rw-r--r--libbe/storage/util/settings_object.py6
2 files changed, 4 insertions, 4 deletions
diff --git a/libbe/storage/util/properties.py b/libbe/storage/util/properties.py
index f8d3767..77c0162 100644
--- a/libbe/storage/util/properties.py
+++ b/libbe/storage/util/properties.py
@@ -364,7 +364,7 @@ def change_hook_property(hook, mutable=False, default=None):
t.x.append(5) # external modification
t.x # dummy access notices change and triggers hook
- See :class:`testChangeHookMutableProperty` for an example of the
+ See :py:class:`testChangeHookMutableProperty` for an example of the
expected behavior.
Parameters
diff --git a/libbe/storage/util/settings_object.py b/libbe/storage/util/settings_object.py
index 9e3ace5..819698f 100644
--- a/libbe/storage/util/settings_object.py
+++ b/libbe/storage/util/settings_object.py
@@ -18,7 +18,7 @@
# You should have received a copy of the GNU General Public License along with
# Bugs Everywhere. If not, see <http://www.gnu.org/licenses/>.
-"""Provides :class:`SavedSettingsObject` implementing settings-dict
+"""Provides :py:class:`SavedSettingsObject` implementing settings-dict
based property storage.
See Also
@@ -198,8 +198,8 @@ class SavedSettingsObject(object):
properties.
This is useful for BE objects with saved properties
- (e.g. :class:`~libbe.bugdir.BugDir`, :class:`~libbe.bug.Bug`,
- :class:`~libbe.comment.Comment`). For example usage, consider the
+ (e.g. :py:class:`~libbe.bugdir.BugDir`, :py:class:`~libbe.bug.Bug`,
+ :py:class:`~libbe.comment.Comment`). For example usage, consider the
unittests at the end of the module.
See Also