[cleanup] Fix typos

Bug: 
Cq-Include-Trybots: master.tryserver.chromium.linux:linux_chromium_rel_ng
Change-Id: I9df5beca6444a42aa35c624760265a3cc02182b6
Reviewed-on: https://chromium-review.googlesource.com/753450
Reviewed-by: Andreas Haas <ahaas@chromium.org>
Commit-Queue: Franziska Hinkelmann <franzih@chromium.org>
Cr-Commit-Position: refs/heads/master@{#49135}
This commit is contained in:
Franziska Hinkelmann 2017-11-06 11:12:44 +01:00 committed by Commit Bot
parent dbddb56359
commit 12eb3e975e

View File

@ -442,7 +442,7 @@ class WeakCallbackInfo {
return embedder_fields_[1]; return embedder_fields_[1];
} }
V8_DEPRECATED("Not realiable once SetSecondPassCallback() was used.", V8_DEPRECATED("Not reliable once SetSecondPassCallback() was used.",
bool IsFirstPass() const) { bool IsFirstPass() const) {
return callback_ != nullptr; return callback_ != nullptr;
} }
@ -5272,7 +5272,7 @@ typedef void (*GenericNamedPropertySetterCallback)(
* defineProperty(). * defineProperty().
* *
* Use `info.GetReturnValue().Set(value)` to set the property attributes. The * Use `info.GetReturnValue().Set(value)` to set the property attributes. The
* value is an interger encoding a `v8::PropertyAttribute`. * value is an integer encoding a `v8::PropertyAttribute`.
* *
* \param property The name of the property for which the request was * \param property The name of the property for which the request was
* intercepted. * intercepted.
@ -5996,7 +5996,7 @@ class V8_EXPORT ObjectTemplate : public Template {
bool IsImmutableProto(); bool IsImmutableProto();
/** /**
* Makes the ObjectTempate for an immutable prototype exotic object, with an * Makes the ObjectTemplate for an immutable prototype exotic object, with an
* immutable __proto__. * immutable __proto__.
*/ */
void SetImmutableProto(); void SetImmutableProto();
@ -6303,7 +6303,7 @@ typedef MaybeLocal<Promise> (*HostImportModuleDynamicallyCallback)(
/** /**
* HostInitializeImportMetaObjectCallback is called the first time import.meta * HostInitializeImportMetaObjectCallback is called the first time import.meta
* is accessed for a module. Subsequent acccess will reuse the same value. * is accessed for a module. Subsequent access will reuse the same value.
* *
* The method combines two implementation-defined abstract operations into one: * The method combines two implementation-defined abstract operations into one:
* HostGetImportMetaProperties and HostFinalizeImportMeta. * HostGetImportMetaProperties and HostFinalizeImportMeta.