From 0f772d7a3126836434a394196e4e05642dbaf9ae Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Fri, 13 Nov 2020 14:41:15 +0100 Subject: [PATCH] Fix typo in ReturnValue struct comment (#521) --- src/function.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/function.rs b/src/function.rs index 3f762b12..daff57f1 100644 --- a/src/function.rs +++ b/src/function.rs @@ -63,7 +63,7 @@ extern "C" { fn v8__ReturnValue__Get(this: *const ReturnValue) -> *const Value; } -// Npte: the 'cb lifetime is required because the ReturnValue object must not +// Note: the 'cb lifetime is required because the ReturnValue object must not // outlive the FunctionCallbackInfo/PropertyCallbackInfo object from which it // is derived. #[repr(C)]