Minor comment fixes.

R=adamk@chromium.org
BUG=

Review-Url: https://codereview.chromium.org/2394173002
Cr-Commit-Position: refs/heads/master@{#40069}
This commit is contained in:
neis 2016-10-07 01:23:33 -07:00 committed by Commit bot
parent dedf6f6d74
commit 0d2830a265
2 changed files with 3 additions and 3 deletions

View File

@ -3542,7 +3542,7 @@ class PropertyCallbackInfo {
/**
* \return The receiver. In many cases, this is the object on which the
* property access was intercepted. When using
* `Reflect.Get`, `Function.prototype.call`, or similar functions, it is the
* `Reflect.get`, `Function.prototype.call`, or similar functions, it is the
* object passed in as receiver or thisArg.
*
* \code
@ -3607,7 +3607,7 @@ class PropertyCallbackInfo {
* \return True if the intercepted function should throw if an error occurs.
* Usually, `true` corresponds to `'use strict'`.
*
* \note Always `false` when intercepting `Reflect.Set()`
* \note Always `false` when intercepting `Reflect.set()`
* independent of the language mode.
*/
V8_INLINE bool ShouldThrowOnError() const;

View File

@ -7296,7 +7296,7 @@ class SharedFunctionInfo: public HeapObject {
inline String* inferred_name();
inline void set_inferred_name(String* inferred_name);
// [script info]: Script from which the function originates.
// [script]: Script from which the function originates.
DECL_ACCESSORS(script, Object)
// [num_literals]: Number of literals used by this function.