diff --git a/README.md b/README.md
index 0538957a5..93d21988c 100644
--- a/README.md
+++ b/README.md
@@ -37,8 +37,8 @@ A list of upcoming features is available on our [roadmap](https://github.com/lod
* [_.bindKey](http://lodash.com/docs#bindKey) for binding [*“lazy”*](http://michaux.ca/articles/lazy-function-definition-pattern) defined methods
* [_.clone](http://lodash.com/docs#clone) supports shallow cloning of `Date` & `RegExp` objects
* [_.cloneDeep](http://lodash.com/docs#cloneDeep) for deep cloning arrays & objects
+ * [_.constant](http://lodash.com/docs#constant) & [_.property](http://lodash.com/docs#property) function generators for composing functions
* [_.contains](http://lodash.com/docs#contains) accepts a `fromIndex`
- * [_.constant](http://lodash.com/docs#constant) and [_.property](http://lodash.com/docs#property) function generators for composing functions
* [_.create](http://lodash.com/docs#create) for easier object inheritance
* [_.createCallback](http://lodash.com/docs#createCallback) for extending callbacks in methods & mixins
* [_.curry](http://lodash.com/docs#curry) for creating [curried](http://hughfdjackson.com/javascript/2013/07/06/why-curry-helps/) functions
diff --git a/doc/README.md b/doc/README.md
index 65f591730..bb99f6587 100644
--- a/doc/README.md
+++ b/doc/README.md
@@ -977,7 +977,7 @@ _.without([1, 2, 1, 0, 3, 1, 4], 0, 1);
### `_.xor([array])`
# [Ⓢ](https://github.com/lodash/lodash/blob/master/lodash.js#L5380 "View in source") [Ⓣ][1]
-Creates an array that is the smymetric difference of the provided arrays. See http://en.wikipedia.org/wiki/Symmetric_difference.
+Creates an array that is the symmetric difference of the provided arrays. See http://en.wikipedia.org/wiki/Symmetric_difference.
#### Arguments
1. `[array]` *(...Array)*: The arrays to inspect.
diff --git a/lodash.js b/lodash.js
index 363ec82e3..6e3d03e4f 100644
--- a/lodash.js
+++ b/lodash.js
@@ -5361,7 +5361,7 @@
}
/**
- * Creates an array that is the smymetric difference of the provided arrays.
+ * Creates an array that is the symmetric difference of the provided arrays.
* See http://en.wikipedia.org/wiki/Symmetric_difference.
*
* @static