Index: include/v8.h |
diff --git a/include/v8.h b/include/v8.h |
index c93ee238585f5a86527532eb6e927ac7906a9ccb..4a823524c0090cf22da28216721c14c1ebd65f66 100644 |
--- a/include/v8.h |
+++ b/include/v8.h |
@@ -6469,19 +6469,18 @@ class V8_EXPORT StartupData { |
*/ |
typedef bool (*EntropySource)(unsigned char* buffer, size_t length); |
- |
/** |
* ReturnAddressLocationResolver is used as a callback function when v8 is |
* resolving the location of a return address on the stack. Profilers that |
* change the return address on the stack can use this to resolve the stack |
* location to whereever the profiler stashed the original return address. |
* |
- * \param return_addr_location points to a location on stack where a machine |
+ * \param return_addr_location A location on stack where a machine |
* return address resides. |
- * \returns either return_addr_location, or else a pointer to the profiler's |
+ * \returns Either return_addr_location, or else a pointer to the profiler's |
* copy of the original return address. |
* |
- * \note the resolver function must not cause garbage collection. |
+ * \note The resolver function must not cause garbage collection. |
*/ |
typedef uintptr_t (*ReturnAddressLocationResolver)( |
uintptr_t return_addr_location); |