fix typos in comment

This commit is contained in:
Richard Feldman 2020-11-26 00:02:05 -05:00 committed by GitHub
parent 0d0eb440db
commit 213ea8a79d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
#[macro_export]
/// run_jit_function_raw runs an unwrapped jit function.
/// The function could throw an execption and break things, or worse, it could not throw and exception and break things.
/// The function could throw an exception and break things, or worse, it could not throw an exception and break things.
/// This functions is generally a bad idea with an untrused backend, but is being used for now for development purposes.
macro_rules! run_jit_function_raw {
($lib: expr, $main_fn_name: expr, $ty:ty, $transform:expr) => {{