diff --git a/README.rdoc b/README.rdoc
index abd56563c0d8169903f558554edab9b462a1cb3d..40763a2d5a5deb2dafaaf5a56218f20a7546fc2b 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -34,6 +34,7 @@ If your model has +address+, +city+, +state+, and +country+ attributes your +loc
 Assuming +Venue+ is a geocoded model:
 
   Venue.find_near('Omaha, NE, US', 20)  # venues within 20 miles of Omaha
+  Venue.find_near([40.71, 100.23], 20)  # venues within 20 miles of a point
   Venue.geocoded                        # venues with coordinates
   Venue.not_geocoded                    # venues without coordinates