Skip to content

Commit 0858e70

Browse files
committed
[SYCL] fix typo
1 parent 190ac32 commit 0858e70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sycl/test-e2e/Experimental/free_functions/namespace.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ void test_function_in_inline_ns(sycl::queue& q, sycl::context& ctxt)
9393
call_kernel_code(q, k_function_in_inline_ns);
9494
}
9595

96-
void test_function_in_anonimous_ns(sycl::queue& q, sycl::context& ctxt) {
96+
void test_function_in_anonymous_ns(sycl::queue& q, sycl::context& ctxt) {
9797
// Get a kernel bundle that contains the free function kernel "function_in_anonymous_ns".
9898
auto exe_bndl =
9999
syclexp::get_kernel_bundle<function_in_anonymous_ns,
@@ -111,6 +111,6 @@ int main() {
111111
test_function_without_ns(q, ctxt);
112112
test_function_in_ns(q, ctxt);
113113
test_function_in_inline_ns(q, ctxt);
114-
test_function_in_anonimous_ns(q, ctxt);
114+
test_function_in_anonymous_ns(q, ctxt);
115115
return 0;
116116
}

0 commit comments

Comments
 (0)