From efa1ebff16860e9fd05c02fd2004c7dfe5069a8e Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 26 Feb 2016 00:04:20 -0800 Subject: [PATCH] Clarify result value order of `_.xor`. [ci skip] --- lodash.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 8e58f9252..43f2d5d88 100644 --- a/lodash.js +++ b/lodash.js @@ -7068,7 +7068,8 @@ /** * Creates an array of unique values that is the [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference) - * of the given arrays. + * of the given arrays. The order of result values is determined by the order + * they occur in the arrays. * * @static * @memberOf _