From 30da343d11a978f3326807eab48742daa28c2b08 Mon Sep 17 00:00:00 2001 From: franzih Date: Tue, 23 Aug 2016 06:14:48 -0700 Subject: [PATCH] [api] Minor fix in documentation. BUG= Review-Url: https://codereview.chromium.org/2269033002 Cr-Commit-Position: refs/heads/master@{#38821} --- include/v8.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/include/v8.h b/include/v8.h index 4e1f1a2d68..6f21b09ddd 100644 --- a/include/v8.h +++ b/include/v8.h @@ -6464,19 +6464,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);