Skip to content

Commit 6710d1a

Browse files
committed
[SYCL][NFC] Fix typo in the comments
Signed-off-by: Alexey Bader <[email protected]>
1 parent f000676 commit 6710d1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sycl/test/basic_tests/sampler/sampler.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ int main() {
3737
B.get_coordinate_normalization_mode() &&
3838
A.get_filtering_mode() == B.get_filtering_mode());
3939

40-
// Check assigment operator
40+
// Check assignment operator
4141
if (!Queue.is_host()) {
4242
// OpenCL sampler
4343
cl_int Err = CL_SUCCESS;
@@ -75,7 +75,7 @@ int main() {
7575
sycl::hash_class<cl::sycl::sampler> Hasher;
7676
assert(Hasher(A) != Hasher(B));
7777

78-
// Check move assigment
78+
// Check move assignment
7979
sycl::sampler C(B);
8080
A = std::move(B);
8181
assert(Hasher(C) == Hasher(A));

0 commit comments

Comments
 (0)