diff --git a/README.md b/README.md
index 1bca09f329e06c5e7e368f8c58e7bc8799c551bb..5d92a9a592c5ac8c5ba1117d52695985891362e3 100644
--- a/README.md
+++ b/README.md
@@ -206,6 +206,11 @@ You are not stuck with using the `latitude` and `longitude` database column name
     geocoded_by :address, :latitude  => :lat, :longitude => :lon # ActiveRecord
     geocoded_by :address, :coordinates => :coords                # MongoDB
 
+This means you can geocode multiple addresses as well:
+
+    geocoded_by :start_address, latitude: :start_latitude, longitude: :start_longitude
+    geocoded_by :end_address, latitude: :end_latitude, longitude: :end_longitude
+
 The `address` method can return any string you'd use to search Google Maps. For example, any of the following are acceptable:
 
 * "714 Green St, Big Town, MO"