Skip to content

Commit

Permalink
Refactor: Spellfix continous -> continuous.
Browse files Browse the repository at this point in the history
No logic changes, just fixing a misspelling. VSCode also removed extra
trailing spaces.

Change-Id: I680d94fd8d3ef7853c17d9d6dc2d60445f86fed4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1533305
Reviewed-by: Darwin Huang <huangdarwin@chromium.org>
Reviewed-by: Victor Costan <pwnall@chromium.org>
Commit-Queue: Darwin Huang <huangdarwin@chromium.org>
Commit-Queue: Victor Costan <pwnall@chromium.org>
Cr-Commit-Position: refs/heads/master@{#642793}
  • Loading branch information
Darwin Huang authored and Commit Bot committed Mar 21, 2019
1 parent d599728 commit 5e6bc87
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 37 deletions.
2 changes: 1 addition & 1 deletion docs/clang_static_analyzer.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ for more background information.

## Save some time, look at the buildbot logs!

We run static analysis builds continously, all day long on FYI buildbots.
We run static analysis builds continuously, all day long on FYI buildbots.
You can save yourself some time by first inspecting their build logs for errors
before running your own analysis builds. You will probably need to Ctrl-F the
logs to find any issues for the specific files you're interested in.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ compatibility namespace ("py.builtin"), IO capturing, terminal colored printing
(on windows and linux), ini-file parsing and a lazy import mechanism.
It runs unmodified on all Python interpreters compatible to Python2.4 up
until Python 3.2. The general goal with "py" is to provide stable APIs
for some common tasks that are continously tested against many Python
for some common tasks that are continuously tested against many Python
interpreters and thus also to help transition. Here are some docs:

http://pylib.org
Expand All @@ -20,7 +20,7 @@ as its own separate "pytest" distribution and was just released
as "pytest-2.0.0", see here for the revamped docs:

http://pytest.org

And "py.cleanup|py.lookup|py.countloc" etc. helpers are now part of
the pycmd distribution, see http://pypi.python.org/pypi/pycmd

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ compatibility namespace ("py.builtin"), IO capturing, terminal colored printing
(on windows and linux), ini-file parsing and a lazy import mechanism.
It runs unmodified on all Python interpreters compatible to Python2.4 up
until Python 3.2, PyPy and Jython. The general goal with "py" is to
provide stable APIs for some common tasks that are continously tested
provide stable APIs for some common tasks that are continuously tested
against many Python interpreters and thus also to help transition. Here
are some docs:

Expand All @@ -21,7 +21,7 @@ NOTE: The prior py-1.3.X versions contained "py.test" which since py-1.4.0
comes as its own separate "pytest" distribution, see:

http://pytest.org

Also, the "py.cleanup|py.lookup|py.countloc" helpers are now part of
the pycmd distribution, see http://pypi.python.org/pypi/pycmd

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@

shouldBeFalse('checkbox.checked');
debug('The checkbox should be checked after three clicks');
testWithContinousClick(span, 3);
testWithContinuousClick(span, 3);
shouldBeTrue('checkbox.checked');

debug('Checkbox should still be checked after ten clicks');
testWithContinousClick(span, 10);
testWithContinuousClick(span, 10);
shouldBeTrue('checkbox.checked');

checkbox.style.display = 'none';

function testWithContinousClick(element, number)
function testWithContinuousClick(element, number)
{
eventSender.mouseMoveTo(element.offsetLeft, element.offsetTop);
for (n = 0; n < number; ++n) {
Expand Down
58 changes: 29 additions & 29 deletions third_party/blink/web_tests/svg/W3C-SVG-1.1/animate-elem-41-t.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5e6bc87

Please sign in to comment.