Chromium Code Reviews| Index: include/v8.h |
| diff --git a/include/v8.h b/include/v8.h |
| index b752a4340eff51dfd9d08d8f06b4b74cf0a56c43..88e6dfc50161decf339d8cab1946823a2da89627 100644 |
| --- a/include/v8.h |
| +++ b/include/v8.h |
| @@ -3540,7 +3540,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 |
|
adamk
2016/10/04 18:26:52
Maybe leave these changes out of this CL :)
neis
2016/10/05 08:18:41
Done.
|
| * object passed in as receiver or thisArg. |
| * |
| * \code |
| @@ -3605,7 +3605,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; |