From c167ae0a87b8479a9b8045f81c8774b2baa2b541 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 27 Jan 2020 15:01:25 +0100 Subject: [PATCH] src: fix minor typo in base_object.h PR-URL: https://github.com/nodejs/node/pull/31535 Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig Reviewed-By: David Carlier Reviewed-By: James M Snell Reviewed-By: Rich Trott --- src/base_object.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base_object.h b/src/base_object.h index daf40b7c1eb7b4..e7ef029995f1cf 100644 --- a/src/base_object.h +++ b/src/base_object.h @@ -165,7 +165,7 @@ inline T* Unwrap(v8::Local obj) { // Implementation of a generic strong or weak pointer to a BaseObject. // If strong, this will keep the target BaseObject alive regardless of other -// circumstances such das GC or Environment cleanup. +// circumstances such as the GC or Environment cleanup. // If weak, destruction behaviour is not affected, but the pointer will be // reset to nullptr once the BaseObject is destroyed. // The API matches std::shared_ptr closely.