diff --git a/docs/releases/0_9_11.rst b/docs/releases/0_9_11.rst index 226ce0d61..264cd7525 100644 --- a/docs/releases/0_9_11.rst +++ b/docs/releases/0_9_11.rst @@ -69,7 +69,7 @@ New Features Graphite-web ^^^^^^^^^^^^ * Properly return an HTTP 400 on missing query parameter in metrics/search endpoint (dieterbe) -* cumulative() is now superceded by consolidateBy() which supports min/max/avg/sum (nleskiw) +* cumulative() is now superseded by consolidateBy() which supports min/max/avg/sum (nleskiw) * Make graphlot target host configurable for easier embedding (dieterbe) * Allow graphlot graphs to be embedded for use in dashboard apps (dieterbe) * When wildcarding, prefer matching metric files to directories with the same name (tmm1) diff --git a/webapp/content/js/ext/adapter/ext/ext-base-debug.js b/webapp/content/js/ext/adapter/ext/ext-base-debug.js index e222fe2cd..fe700b001 100644 --- a/webapp/content/js/ext/adapter/ext/ext-base-debug.js +++ b/webapp/content/js/ext/adapter/ext/ext-base-debug.js @@ -483,7 +483,7 @@ Ext.urlDecode("foo=1&bar=2&bar=3&bar=4", false); // returns {foo: "1", bar: ["2" * @param {Function} fn The function to be called for each iteration. * The iteration will stop if the supplied function returns false, or * all array elements / object properties have been covered. The signature - * varies depending on the type of object being interated: + * varies depending on the type of object being iterated: *