Skip to content

Commit

Permalink
Fix "shuld" typos (web-platform-tests#37621)
Browse files Browse the repository at this point in the history
  • Loading branch information
foolip authored Dec 21, 2022
1 parent 9b3bbd5 commit 8073ec1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion css/css-animations/Element-getAnimations.tentative.html
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
assert_equals(animations.length, 1,
'Should find only the element even if it has a child');
assert_equals(animations[0].effect.target, parent,
'Effect target shuld be the element');
'Effect target should be the element');
}, '{ subtree: false } on an element with a child returns only the element\'s'
+ ' animations');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
'"navigation":' + url);

// If the server returns the redirect response, |decodedBodySize| is null and
// |entry.decodedBodySize| shuld be 0. Otherwise |entry.decodedBodySize| must
// |entry.decodedBodySize| should be 0. Otherwise |entry.decodedBodySize| must
// same as |decodedBodySize|
assert_equals(
entry.decodedBodySize, Number(decodedBodySize),
'decodedBodySize must same as the decoded size in the server:' + url);

// If the server returns the redirect response, |encodedBodySize| is null and
// |entry.encodedBodySize| shuld be 0. Otherwise |entry.encodedBodySize| must
// |entry.encodedBodySize| should be 0. Otherwise |entry.encodedBodySize| must
// same as |encodedBodySize|
assert_equals(
entry.encodedBodySize, Number(encodedBodySize),
Expand Down
2 changes: 1 addition & 1 deletion tools/ci/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def get_jobs(paths, **kwargs):
if not rules:
break

# Default jobs shuld run even if there were no changes
# Default jobs should run even if there were no changes
if not paths:
for job, path_re in job_path_map.items():
if ".*" in path_re:
Expand Down

0 comments on commit 8073ec1

Please sign in to comment.