0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2025-01-13 17:40:23 -05:00

chore: Update docstring on v8::Global (#1153)

This commit is contained in:
Bartek Iwańczuk 2022-12-09 15:20:40 +01:00 committed by GitHub
parent dd12978745
commit b53ecc2f65
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -144,8 +144,7 @@ impl<'s, T> Deref for Local<'s, T> {
/// An object reference that is independent of any handle scope. Where
/// a Local handle only lives as long as the HandleScope in which it was
/// allocated, a global handle remains valid until it is explicitly
/// disposed using reset().
/// allocated, a global handle remains valid until it is dropped.
///
/// A global handle contains a reference to a storage cell within
/// the V8 engine which holds an object value and which is updated by