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

Fix typo in examples/process.rs comment (#580)

This commit is contained in:
Daniel Bevenius 2021-01-12 04:38:39 +01:00 committed by GitHub
parent 7a480fd563
commit d78dcd087f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -259,7 +259,7 @@ where
use std::ffi::c_void; use std::ffi::c_void;
// Dobule-box to get C-sized reference of Box<dyn HttpRequest> // Double-box to get C-sized reference of Box<dyn HttpRequest>
let request = Box::new(request); let request = Box::new(request);
// Local scope for temporary handles. // Local scope for temporary handles.