[Zodb-checkins] CVS: Zope3/src/zodb/btrees - BucketTemplate.c:1.5

Tim Peters tim.one@comcast.net
Fri, 21 Feb 2003 14:07:15 -0500


Update of /cvs-repository/Zope3/src/zodb/btrees
In directory cvs.zope.org:/tmp/cvs-serv30155/src/zodb/btrees

Modified Files:
	BucketTemplate.c 
Log Message:
Fixed obvious typos in minKey/maxKey doc strings.


=== Zope3/src/zodb/btrees/BucketTemplate.c 1.4 => 1.5 ===
--- Zope3/src/zodb/btrees/BucketTemplate.c:1.4	Fri Feb 21 12:33:01 2003
+++ Zope3/src/zodb/btrees/BucketTemplate.c	Fri Feb 21 14:07:14 2003
@@ -1401,11 +1401,11 @@
      "update(collection) -- Add the items from the given collection"},
 
     {"maxKey", (PyCFunction) Bucket_maxKey,	METH_VARARGS,
-     "maxKey([key]) -- Fine the maximum key\n\n"
+     "maxKey([key]) -- Find the maximum key\n\n"
      "If an argument is given, find the maximum <= the argument"},
 
     {"minKey", (PyCFunction) Bucket_minKey,	METH_VARARGS,
-     "minKey([key]) -- Fine the minimum key\n\n"
+     "minKey([key]) -- Find the minimum key\n\n"
      "If an argument is given, find the minimum >= the argument"},
 
     {"values",	(PyCFunction) bucket_values,	METH_KEYWORDS,