Commit 58ef241d authored by Maxim Mazurok's avatar Maxim Mazurok Committed by Commit Bot

Fixed typos

- "constuctor" -> "constructor"
- "dependendencies" -> "dependencies"
- "develpers" -> "developers"
- ["nonexistant"][1] -> ["nonexistent"][2]
- "reponsible" -> "responsible"

  [1]: https://en.wiktionary.org/wiki/nonexistant
  [2]: https://en.wiktionary.org/wiki/nonexistent

Change-Id: I8bb482d03c391bd0d37afd5d616229fa50a4ab77
Reviewed-on: https://chromium-review.googlesource.com/c/1390203
Commit-Queue: Yang Guo <yangguo@chromium.org>
Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
Reviewed-by: 's avatarToon Verwaest <verwaest@chromium.org>
Reviewed-by: 's avatarCamillo Bruni <cbruni@chromium.org>
Reviewed-by: 's avatarMichael Stanton <mvstanton@chromium.org>
Cr-Commit-Position: refs/heads/master@{#58610}
parent 2bcbeeb8
...@@ -1288,7 +1288,7 @@ void Deoptimizer::DoComputeConstructStubFrame(TranslatedFrame* translated_frame, ...@@ -1288,7 +1288,7 @@ void Deoptimizer::DoComputeConstructStubFrame(TranslatedFrame* translated_frame,
// The constructor function was mentioned explicitly in the // The constructor function was mentioned explicitly in the
// CONSTRUCT_STUB_FRAME. // CONSTRUCT_STUB_FRAME.
frame_writer.PushTranslatedValue(function_iterator, "constuctor function\n"); frame_writer.PushTranslatedValue(function_iterator, "constructor function\n");
// The deopt info contains the implicit receiver or the new target at the // The deopt info contains the implicit receiver or the new target at the
// position of the receiver. Copy it to the top of stack, with the hole value // position of the receiver. Copy it to the top of stack, with the hole value
......
...@@ -169,7 +169,7 @@ namespace internal { ...@@ -169,7 +169,7 @@ namespace internal {
"'construct' on proxy: trap returned non-object ('%')") \ "'construct' on proxy: trap returned non-object ('%')") \
T(ProxyDefinePropertyNonConfigurable, \ T(ProxyDefinePropertyNonConfigurable, \
"'defineProperty' on proxy: trap returned truish for defining " \ "'defineProperty' on proxy: trap returned truish for defining " \
"non-configurable property '%' which is either non-existant or " \ "non-configurable property '%' which is either non-existent or " \
"configurable in the proxy target") \ "configurable in the proxy target") \
T(ProxyDefinePropertyNonExtensible, \ T(ProxyDefinePropertyNonExtensible, \
"'defineProperty' on proxy: trap returned truish for adding property '%' " \ "'defineProperty' on proxy: trap returned truish for adding property '%' " \
...@@ -197,7 +197,7 @@ namespace internal { ...@@ -197,7 +197,7 @@ namespace internal {
"undefined for property '%'") \ "undefined for property '%'") \
T(ProxyGetOwnPropertyDescriptorNonConfigurable, \ T(ProxyGetOwnPropertyDescriptorNonConfigurable, \
"'getOwnPropertyDescriptor' on proxy: trap reported non-configurability " \ "'getOwnPropertyDescriptor' on proxy: trap reported non-configurability " \
"for property '%' which is either non-existant or configurable in the " \ "for property '%' which is either non-existent or configurable in the " \
"proxy target") \ "proxy target") \
T(ProxyGetOwnPropertyDescriptorNonExtensible, \ T(ProxyGetOwnPropertyDescriptorNonExtensible, \
"'getOwnPropertyDescriptor' on proxy: trap returned undefined for " \ "'getOwnPropertyDescriptor' on proxy: trap returned undefined for " \
......
...@@ -53,9 +53,9 @@ assertEquals( ...@@ -53,9 +53,9 @@ assertEquals(
{value: "Module", configurable: false, writable: false, enumerable: false}, {value: "Module", configurable: false, writable: false, enumerable: false},
Reflect.getOwnPropertyDescriptor(foo, Symbol.toStringTag)); Reflect.getOwnPropertyDescriptor(foo, Symbol.toStringTag));
// Nonexistant properties. // Nonexistent properties.
let nonexistant = ["gaga", 123, Symbol('')]; let nonexistent = ["gaga", 123, Symbol('')];
for (let key of nonexistant) { for (let key of nonexistent) {
assertSame(undefined, Reflect.getOwnPropertyDescriptor(foo, key)); assertSame(undefined, Reflect.getOwnPropertyDescriptor(foo, key));
assertTrue(Reflect.deleteProperty(foo, key)); assertTrue(Reflect.deleteProperty(foo, key));
assertFalse(Reflect.set(foo, key, true)); assertFalse(Reflect.set(foo, key, true));
......
...@@ -26,5 +26,5 @@ try { ...@@ -26,5 +26,5 @@ try {
} catch(e) { print("Caught: " + e); } } catch(e) { print("Caught: " + e); }
try { try {
var obj = {prop: 7}; var obj = {prop: 7};
assertThrows("nonexistant(obj)"); assertThrows("nonexistent(obj)");
} catch(e) { print("Caught: " + e); } } catch(e) { print("Caught: " + e); }
...@@ -27,7 +27,7 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ...@@ -27,7 +27,7 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
PASS a = 1; delete a; is true PASS a = 1; delete a; is true
PASS delete nonexistant; is true PASS delete nonexistent; is true
PASS delete NaN is false PASS delete NaN is false
PASS successfullyParsed is true PASS successfullyParsed is true
......
...@@ -23,5 +23,5 @@ ...@@ -23,5 +23,5 @@
description("KDE JS Test"); description("KDE JS Test");
shouldBe("a = 1; delete a;", "true"); shouldBe("a = 1; delete a;", "true");
shouldBe("delete nonexistant;", "true"); shouldBe("delete nonexistent;", "true");
shouldBe("delete NaN", "false"); shouldBe("delete NaN", "false");
...@@ -58,7 +58,7 @@ function testReferenceError() ...@@ -58,7 +58,7 @@ function testReferenceError()
var err = "noerror"; var err = "noerror";
var caught = false; var caught = false;
try { try {
var dummy = nonexistant; // throws reference error var dummy = nonexistent; // throws reference error
} catch (e) { } catch (e) {
caught = true; caught = true;
err = e.name; err = e.name;
......
...@@ -28,7 +28,7 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ...@@ -28,7 +28,7 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
PASS a.propertyIsEnumerable('length') is false PASS a.propertyIsEnumerable('length') is false
PASS a.propertyIsEnumerable ('foo') is true PASS a.propertyIsEnumerable ('foo') is true
PASS a.propertyIsEnumerable ('non-existant') is false PASS a.propertyIsEnumerable ('non-existent') is false
PASS global.propertyIsEnumerable ('aVarDecl') is true PASS global.propertyIsEnumerable ('aVarDecl') is true
PASS global.propertyIsEnumerable ('aFunctionDecl') is true PASS global.propertyIsEnumerable ('aFunctionDecl') is true
PASS global.propertyIsEnumerable ('Math') is false PASS global.propertyIsEnumerable ('Math') is false
......
...@@ -33,7 +33,7 @@ function aFunctionDecl(){} ...@@ -33,7 +33,7 @@ function aFunctionDecl(){}
var global = this; var global = this;
shouldBeFalse("a.propertyIsEnumerable('length')"); shouldBeFalse("a.propertyIsEnumerable('length')");
shouldBeTrue("a.propertyIsEnumerable ('foo')"); shouldBeTrue("a.propertyIsEnumerable ('foo')");
shouldBeFalse("a.propertyIsEnumerable ('non-existant')"); shouldBeFalse("a.propertyIsEnumerable ('non-existent')");
shouldBeTrue("global.propertyIsEnumerable ('aVarDecl')"); shouldBeTrue("global.propertyIsEnumerable ('aVarDecl')");
shouldBeTrue("global.propertyIsEnumerable ('aFunctionDecl')"); shouldBeTrue("global.propertyIsEnumerable ('aFunctionDecl')");
......
...@@ -169,7 +169,7 @@ We can then return two lists as output: ...@@ -169,7 +169,7 @@ We can then return two lists as output:
* `compile_targets`, which is a list of pruned targets to be * `compile_targets`, which is a list of pruned targets to be
passed to Ninja to build. It is acceptable to replace a list of passed to Ninja to build. It is acceptable to replace a list of
pruned targets by a meta target if it turns out that all of the pruned targets by a meta target if it turns out that all of the
dependendencies of the target are affected by the patch (i.e., dependencies of the target are affected by the patch (i.e.,
all ten binaries that blink_tests depends on), but doing so is all ten binaries that blink_tests depends on), but doing so is
not required. not required.
* `test_targets`, which is a list of unpruned targets to be mapped * `test_targets`, which is a list of unpruned targets to be mapped
......
...@@ -20,7 +20,7 @@ For more discussion of MB, see also [the design spec](design_spec.md). ...@@ -20,7 +20,7 @@ For more discussion of MB, see also [the design spec](design_spec.md).
### `mb analyze` ### `mb analyze`
`mb analyze` is reponsible for determining what targets are affected by `mb analyze` is responsible for determining what targets are affected by
a list of files (e.g., the list of files in a patch on a trybot): a list of files (e.g., the list of files in a patch on a trybot):
``` ```
...@@ -229,7 +229,7 @@ The `configs` key points to a dictionary of named build configurations. ...@@ -229,7 +229,7 @@ The `configs` key points to a dictionary of named build configurations.
There should be an key in this dict for every supported configuration There should be an key in this dict for every supported configuration
of Chromium, meaning every configuration we have a bot for, and every of Chromium, meaning every configuration we have a bot for, and every
configuration commonly used by develpers but that we may not have a bot configuration commonly used by developers but that we may not have a bot
for. for.
The value of each key is a list of "mixins" that will define what that The value of each key is a list of "mixins" that will define what that
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment