diff --git a/docs/release-notes/1.4/index.html b/docs/release-notes/1.4/index.html index 2867c61e7..c401bfb1f 100644 --- a/docs/release-notes/1.4/index.html +++ b/docs/release-notes/1.4/index.html @@ -13,7 +13,7 @@ twitterdescription: The new release contains with median values on the summary p

-Sitespeed 1.4 was relased the 5th of December 2012. The main goal with the release was to add median values for all statistics on the summary page (before only average values was displayed). This is what's done in this release: +Sitespeed 1.4 was released the 5th of December 2012. The main goal with the release was to add median values for all statistics on the summary page (before only average values was displayed). This is what's done in this release:

diff --git a/lib/plugins/budget/verify.js b/lib/plugins/budget/verify.js index e49de6970..742038f1d 100644 --- a/lib/plugins/budget/verify.js +++ b/lib/plugins/budget/verify.js @@ -30,7 +30,7 @@ module.exports = { verify(message, result, budgets) { const failing = []; const working = []; - // do we have an etry in the budget for this kind of message? + // do we have an entry in the budget for this kind of message? if (budgets[message.type]) { for (var budget of budgets[message.type]) { diff --git a/lib/plugins/graphite/data-generator.js b/lib/plugins/graphite/data-generator.js index fa1597bed..fa72d1d7b 100644 --- a/lib/plugins/graphite/data-generator.js +++ b/lib/plugins/graphite/data-generator.js @@ -12,7 +12,7 @@ function keyPathFromMessage(message, options, includeQueryParams) { // always have browser and connectivity in Browsertime and related tools if (message.type.match(/(^pagexray|^coach|^browsertime|^largestassets|^slowestassets|^aggregateassets|^domains)/)) { - // if we have a friendly name for your conectivity, use that! + // if we have a friendly name for your connectivity, use that! let connectivity = graphiteUtil.getConnectivity(options); typeParts.splice(1, 0, connectivity); diff --git a/lib/plugins/graphite/index.js b/lib/plugins/graphite/index.js index 8602413a3..1a7ee9b29 100644 --- a/lib/plugins/graphite/index.js +++ b/lib/plugins/graphite/index.js @@ -28,7 +28,7 @@ module.exports = { if (!(message.type.endsWith('.summary') || message.type.endsWith('.pageSummary'))) return; - // we only sends individual groups to Grahite, not the + // we only sends individual groups to Graphite, not the // total of all groups (you can calculate that yourself) if (message.group === 'total') { return; diff --git a/lib/plugins/graphite/util.js b/lib/plugins/graphite/util.js index b379df8ba..652cf5cb0 100644 --- a/lib/plugins/graphite/util.js +++ b/lib/plugins/graphite/util.js @@ -8,7 +8,7 @@ module.exports = { return key.replace(/[.~ /+|,:?&%]|%7C/g, '_'); }, getConnectivity(options) { - // if we have a friendly name for your conectivity, use that! + // if we have a friendly name for your connectivity, use that! let connectivity = get(options, 'browsertime.connectivity.alias'); if (connectivity) { return this.toSafeKey(connectivity); diff --git a/lib/plugins/html/htmlBuilder.js b/lib/plugins/html/htmlBuilder.js index 0dea4a9ec..c326320fc 100644 --- a/lib/plugins/html/htmlBuilder.js +++ b/lib/plugins/html/htmlBuilder.js @@ -84,7 +84,7 @@ class HTMLBuilder { } this.summary.budget = { pageTitle: 'Performance budget ', - pageDescription: 'The list of failing and working perfomance budgets.', + pageDescription: 'The list of failing and working performance budgets.', budget: this.budget, totalFailing, totalWorking diff --git a/lib/plugins/html/src/sass/utilities/settings.scss b/lib/plugins/html/src/sass/utilities/settings.scss index 13def9e76..93823c8c7 100644 --- a/lib/plugins/html/src/sass/utilities/settings.scss +++ b/lib/plugins/html/src/sass/utilities/settings.scss @@ -1,7 +1,7 @@ // // SETTINGS // ======== -// Specific setings which can be changed to modify the basic look and +// Specific settings which can be changed to modify the basic look and // feel of the project with little effort. // // 1. COLOURS diff --git a/lib/plugins/html/templates/url/pagexray/index.pug b/lib/plugins/html/templates/url/pagexray/index.pug index ba0a6f64f..1d2cffbaa 100644 --- a/lib/plugins/html/templates/url/pagexray/index.pug +++ b/lib/plugins/html/templates/url/pagexray/index.pug @@ -96,7 +96,7 @@ if pagexray.firstParty.requests +sizeCell('contentSize', pagexray.thirdParty.contentSize) +numberCell('requests', pagexray.thirdParty.requests) -a#expires-and-last-modfied-stats +a#expires-and-last-modified-stats h3 Expires, last modified and cookies stats - expire = pagexray.expireStats - lastModified = pagexray.lastModifiedStats diff --git a/lib/plugins/metrics/index.js b/lib/plugins/metrics/index.js index dcff55e6b..647a600bc 100644 --- a/lib/plugins/metrics/index.js +++ b/lib/plugins/metrics/index.js @@ -27,7 +27,7 @@ module.exports = { if (metric === '*+') { filterRegistry.clearAll(); } - // all registred types will be set as unmatching, + // all registered types will be set as unmatching, // use it if you want to have a clean filter where // all types are removed and then you can add your own else if(metric === '*-') {