Skip to content

Commit 51aea56

Browse files
committed
Fix typos in comments
1 parent 4cbba79 commit 51aea56

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

code/include/rlbox_policy_types.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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>;

0 commit comments

Comments
 (0)