From fe38fb66fc54490a21e532554ba4b375cf94030e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= <romjerome@yahoo.fr>
Date: Tue, 28 Aug 2012 17:53:04 +0000
Subject: [PATCH] #5991: typo on docstrings; crash was already fixed by Doug on
 rev19498...

svn: r20279
---
 src/gen/proxy/proxybase.py | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/gen/proxy/proxybase.py b/src/gen/proxy/proxybase.py
index 91d16c867..3a360702c 100644
--- a/src/gen/proxy/proxybase.py
+++ b/src/gen/proxy/proxybase.py
@@ -905,31 +905,31 @@ class ProxyDbBase(DbReadBase):
         return self.bookmarks
 
     def get_family_bookmarks(self):
-        """returns the list of Person handles in the bookmarks"""
+        """returns the list of Family handles in the bookmarks"""
         return self.family_bookmarks
 
     def get_event_bookmarks(self):
-        """returns the list of Person handles in the bookmarks"""
+        """returns the list of Event handles in the bookmarks"""
         return self.event_bookmarks
 
     def get_place_bookmarks(self):
-        """returns the list of Person handles in the bookmarks"""
+        """returns the list of Place handles in the bookmarks"""
         return self.place_bookmarks
 
     def get_source_bookmarks(self):
-        """returns the list of Person handles in the bookmarks"""
+        """returns the list of Source handles in the bookmarks"""
         return self.source_bookmarks
 
     def get_citation_bookmarks(self):
-        """returns the list of Person handles in the bookmarks"""
+        """returns the list of Citation handles in the bookmarks"""
         return self.citation_bookmarks
 
     def get_media_bookmarks(self):
-        """returns the list of Person handles in the bookmarks"""
+        """returns the list of Media handles in the bookmarks"""
         return self.media_bookmarks
 
     def get_repo_bookmarks(self):
-        """returns the list of Person handles in the bookmarks"""
+        """returns the list of Repository handles in the bookmarks"""
         return self.repo_bookmarks
 
     def get_note_bookmarks(self):