Fixed typos (#1530)

Signed-off-by: Pascal Borreli <pascal@borreli.com>
This commit is contained in:
Pascal Borreli 2017-03-19 07:07:29 +00:00 committed by Tobias Lidskog
parent 449f2e49d8
commit d41eeb82dc
9 changed files with 9 additions and 9 deletions

View File

@ -13,7 +13,7 @@ twitterdescription: The new release contains with median values on the summary p
</div>
<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:
</p>
<div class="row-fluid">

View File

@ -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]) {

View File

@ -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);

View File

@ -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;

View File

@ -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);

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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 === '*-') {