Sfoglia il codice sorgente

Merge pull request #4384 from vitorboschi/fixTypo

fix typo
Carl Bergquist 9 anni fa
parent
commit
fd531e84fc
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      public/app/core/utils/kbn.js

+ 1 - 1
public/app/core/utils/kbn.js

@@ -171,7 +171,7 @@ function($, _) {
   kbn.describe_interval = function (string) {
     var matches = string.match(kbn.interval_regex);
     if (!matches || !_.has(kbn.intervals_in_seconds, matches[2])) {
-      throw new Error('Invalid interval string, expexcting a number followed by one of "Mwdhmsy"');
+      throw new Error('Invalid interval string, expecting a number followed by one of "Mwdhmsy"');
     } else {
       return {
         sec: kbn.intervals_in_seconds[matches[2]],