From f6567318a776b94e9f7b2fa4592d845a465f3a46 Mon Sep 17 00:00:00 2001 From: Spencer Alger Date: Fri, 9 Jan 2015 12:29:24 -0700 Subject: [PATCH] [$watchMulti] spelling error [ci skip] --- src/kibana/components/watch_multi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kibana/components/watch_multi.js b/src/kibana/components/watch_multi.js index f0e5dbcb075c4f..1e1498b23cc554 100644 --- a/src/kibana/components/watch_multi.js +++ b/src/kibana/components/watch_multi.js @@ -36,7 +36,7 @@ define(function (require) { */ $delegate.constructor.prototype.$watchMulti = function (expressions, fn, deep) { if (!_.isArray(expressions)) throw new TypeError('expected an array of expressions to watch'); - if (!_.isFunction(fn)) throw new TypeError('expexted a function that is triggered on each watch'); + if (!_.isFunction(fn)) throw new TypeError('expected a function that is triggered on each watch'); var $scope = this; var fired = false;