From 6c3c643c8e63f3cd2319e4e1e53a6b8627724062 Mon Sep 17 00:00:00 2001 From: CommitSyncScript Date: Fri, 7 Jun 2013 22:04:45 -0700 Subject: [PATCH] Fix typo in OrderedMap Unique was spelled wrong. This fixes it. --- src/utils/OrderedMap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/OrderedMap.js b/src/utils/OrderedMap.js index eb7af99c46..429ddf8307 100644 --- a/src/utils/OrderedMap.js +++ b/src/utils/OrderedMap.js @@ -33,7 +33,7 @@ var NO_EXIST = 'NO_EXIST'; if (__DEV__) { ARRAY_MUST_CB = 'If providing an array to an OrderedMap constructor, you must provide ' + - 'a callback that may determine the uniqueue key for each entry. ' + + 'a callback that may determine the unique key for each entry. ' + 'The key that you return from the callback should uniquely define that ' + 'entity. What is returned from that function must answer the question: ' + '"If you were to shuffle the array of entities, how would you be able to ' +