diff --git a/index.html b/index.html
index 9c10bc272..ab8d15095 100644
--- a/index.html
+++ b/index.html
@@ -1005,8 +1005,9 @@ _.functions(_);
extend_.extend(destination, *sources)
Copy all of the properties in the source objects over to the
- destination object. It's in-order, so the last source will override
- properties of the same name in previous arguments.
+ destination object, and return the destination object.
+ It's in-order, so the last source will override properties of the same
+ name in previous arguments.
_.extend({name : 'moe'}, {age : 50});
@@ -1017,8 +1018,8 @@ _.extend({name : 'moe'}, {age : 50});
defaults_.defaults(object, *defaults)
Fill in missing properties in object with default values from the
- defaults objects. As soon as the property is filled, further defaults
- will have no effect.
+ defaults objects, and return the object. As soon as the
+ property is filled, further defaults will have no effect.
var iceCream = {flavor : "chocolate"};