File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,14 +45,14 @@ class sandbox_callback
4545 T_Callback callback;
4646
4747 // The interceptor is the function that runs between the sandbox invoking the
48- // callback and the actual callback running The interceptor is responsible for
49- // wrapping and converting callback arguments, returns etc. to their
48+ // callback and the actual callback running. The interceptor is responsible
49+ // for wrapping and converting callback arguments, returns etc. to their
5050 // appropriate representations
5151 using T_Interceptor = decltype (
5252 callback_detail::interceptor_type_helper<T_Sbx>(std::declval<T>()));
5353 T_Interceptor callback_interceptor;
5454
55- // The trampoline is the internal sandbox representation of the callback
55+ // The trampoline is the internal sandbox representation of the callback.
5656 // Depending on the sandbox type, this could be the callback pointer directly
5757 // or a trampoline function that gates exits from the sandbox.
5858 using T_Trampoline = detail::convert_to_sandbox_equivalent_t <T, T_Sbx>;
You can’t perform that action at this time.
0 commit comments