diff --git a/doc/README.md b/doc/README.md
index 2f989de49..f993a71e7 100644
--- a/doc/README.md
+++ b/doc/README.md
@@ -1 +1 @@
-# Lo-Dash v3.0.0-pre
+# Lo-Dash v3.0.0-pre
diff --git a/lodash.js b/lodash.js
index dd5ff7e5f..e5818bc67 100644
--- a/lodash.js
+++ b/lodash.js
@@ -1,10 +1,10 @@
/**
* @license
- * Lo-Dash 3.0.0-pre
+ * Lo-Dash 3.0.0-pre
* Copyright 2012-2014 The Dojo Foundation
* Based on Underscore.js 1.7.0
* Copyright 2009-2014 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
- * Available under MIT license
+ * Available under MIT license
*/
;(function() {
@@ -7940,7 +7940,7 @@
* object for all destination properties that resolve to `undefined`. Once a
* property is set, additional defaults of the same property are ignored.
*
- * **Note:** See the [documentation example of `_.partialRight`](http://lodash.com/docs#partialRight)
+ * **Note:** See the [documentation example of `_.partialRight`](https://lodash.com/docs#partialRight)
* for a deep version of this method.
*
* @static
@@ -8811,8 +8811,8 @@
* @returns {string} Returns the escaped string.
* @example
*
- * _.escapeRegExp('[lodash](http://lodash.com/)');
- * // => '\[lodash\]\(http://lodash\.com/\)'
+ * _.escapeRegExp('[lodash](https://lodash.com/)');
+ * // => '\[lodash\]\(https://lodash\.com/\)'
*/
function escapeRegExp(string) {
string = string == null ? '' : String(string);
@@ -9046,7 +9046,7 @@
* for more details.
*
* For more information on precompiling templates see
- * [Lo-Dash's custom builds documentation](http://lodash.com/custom-builds).
+ * [Lo-Dash's custom builds documentation](https://lodash.com/custom-builds).
*
* For more information on Chrome extension sandboxes see
* [Chrome's extensions documentation](http://developer.chrome.com/stable/extensions/sandboxingEval.html).
diff --git a/vendor/benchmark.js/benchmark.js b/vendor/benchmark.js/benchmark.js
index adbc2d8a1..eb50adab6 100644
--- a/vendor/benchmark.js/benchmark.js
+++ b/vendor/benchmark.js/benchmark.js
@@ -293,10 +293,10 @@
* Note: The Benchmark constructor exposes a handful of Lo-Dash methods to
* make working with arrays, collections, and objects easier. The Lo-Dash
* methods are:
- * [`each/forEach`](http://lodash.com/docs#forEach), [`forOwn`](http://lodash.com/docs#forOwn),
- * [`has`](http://lodash.com/docs#has), [`indexOf`](http://lodash.com/docs#indexOf),
- * [`map`](http://lodash.com/docs#map), [`pluck`](http://lodash.com/docs#pluck),
- * and [`reduce`](http://lodash.com/docs#reduce)
+ * [`each/forEach`](https://lodash.com//docs#forEach), [`forOwn`](https://lodash.com//docs#forOwn),
+ * [`has`](https://lodash.com//docs#has), [`indexOf`](https://lodash.com//docs#indexOf),
+ * [`map`](https://lodash.com//docs#map), [`pluck`](https://lodash.com//docs#pluck),
+ * and [`reduce`](https://lodash.com//docs#reduce)
*
* @constructor
* @param {string} name A name to identify the benchmark.
@@ -443,9 +443,9 @@
*
* Note: Each Suite instance has a handful of wrapped Lo-Dash methods to
* make working with Suites easier. The wrapped Lo-Dash methods are:
- * [`each/forEach`](http://lodash.com/docs#forEach), [`indexOf`](http://lodash.com/docs#indexOf),
- * [`map`](http://lodash.com/docs#map), [`pluck`](http://lodash.com/docs#pluck),
- * and [`reduce`](http://lodash.com/docs#reduce)
+ * [`each/forEach`](https://lodash.com//docs#forEach), [`indexOf`](https://lodash.com//docs#indexOf),
+ * [`map`](https://lodash.com//docs#map), [`pluck`](https://lodash.com//docs#pluck),
+ * and [`reduce`](https://lodash.com//docs#reduce)
*
* @constructor
* @memberOf Benchmark