diff --git a/elastic_recheck/cmd/check_success.py b/elastic_recheck/cmd/check_success.py index f529b929..c27bbdc7 100755 --- a/elastic_recheck/cmd/check_success.py +++ b/elastic_recheck/cmd/check_success.py @@ -45,7 +45,7 @@ def get_options(): def all_fails(classifier): - """Find all the the fails in the integrated gate. + """Find all the fails in the integrated gate. This attempts to find all the build jobs in the integrated gate so we can figure out how good we are doing on total classification. diff --git a/elastic_recheck/query_builder.py b/elastic_recheck/query_builder.py index 417b4f14..c50f8f70 100644 --- a/elastic_recheck/query_builder.py +++ b/elastic_recheck/query_builder.py @@ -28,7 +28,7 @@ def generic(raw_query, facet=None): Takes a raw_query string for elastic search. This is typically the same content that you've typed into logstash to get to a unique result. - Optionally supports a facet, which is required for certain opperations, + Optionally supports a facet, which is required for certain operations, like ensuring that all the expected log files for a job have been uploaded. """ diff --git a/elastic_recheck/tests/unit/__init__.py b/elastic_recheck/tests/unit/__init__.py index bbcbaf42..e3e49d19 100644 --- a/elastic_recheck/tests/unit/__init__.py +++ b/elastic_recheck/tests/unit/__init__.py @@ -32,7 +32,7 @@ class FakeES(object): This provides a stub of the elastic search interface, so we can return fake results based on the samples we've already collected to use for - other unit tests. It does this by buiding a reverse mapping from our + other unit tests. It does this by building a reverse mapping from our queries.yaml file, and grabbing the results we'd find for known bugs. """ def __init__(self, url): diff --git a/web/share/handlebars-v2.0.0.js b/web/share/handlebars-v2.0.0.js index f826bbfd..138d4652 100644 --- a/web/share/handlebars-v2.0.0.js +++ b/web/share/handlebars-v2.0.0.js @@ -243,7 +243,7 @@ var __module2__ = (function(__dependency1__, __dependency2__) { function registerDefaultHelpers(instance) { instance.registerHelper('helperMissing', function(/* [args, ]options */) { if(arguments.length === 1) { - // A missing field in a {{foo}} constuct. + // A missing field in a {{foo}} construct. return undefined; } else { // Someone is actually trying to call something, blow up. @@ -343,7 +343,7 @@ var __module2__ = (function(__dependency1__, __dependency2__) { if (isFunction(conditional)) { conditional = conditional.call(this); } // Default behavior is to render the positive path if the value is truthy and not empty. - // The `includeZero` option may be set to treat the condtional as purely not empty based on the + // The `includeZero` option may be set to treat the conditional as purely not empty based on the // behavior of isEmpty. Effectively this determines if 0 is handled by the positive path or negative. if ((!options.hash.includeZero && !conditional) || Utils.isEmpty(conditional)) { return options.inverse(this); @@ -456,7 +456,7 @@ var __module6__ = (function(__dependency1__, __dependency2__, __dependency3__) { } // Note: Using env.VM references rather than local var references throughout this section to allow - // for external users to override these as psuedo-supported APIs. + // for external users to override these as pseudo-supported APIs. env.VM.checkRevision(templateSpec.compiler); var invokePartialWrapper = function(partial, indent, name, context, hash, helpers, partials, data, depths) { @@ -1431,7 +1431,7 @@ var __module10__ = (function(__dependency1__) { omitLeft(inverse.statements, null, true); } - // Find standalone else statments + // Find standalone else statements if (isPrevWhitespace(program.statements) && isNextWhitespace(inverse.statements)) { @@ -1566,7 +1566,7 @@ var __module10__ = (function(__dependency1__) { return; } - // We omit the last node if it's whitespace only and not preceeded by a non-content node. + // We omit the last node if it's whitespace only and not preceded by a non-content node. var original = current.string; current.string = current.string.replace(multiple ? (/\s+$/) : (/[ \t]+$/), ''); current.leftStripped = current.string !== original;