@@ -165,7 +165,7 @@ py_as_c_contig(const dpctl::tensor::usm_ndarray &src,
165
165
" Source and destination arrays must have the same data type" );
166
166
}
167
167
168
- // ensures also that destinaton is plenty ample to accomodate all
168
+ // ensures also that destination is plenty ample to accommodate all
169
169
// elements of src array
170
170
if (!dst.is_c_contiguous ()) {
171
171
throw py::value_error (" Destination array must be C-contiguous" );
@@ -298,7 +298,7 @@ py_as_f_contig(const dpctl::tensor::usm_ndarray &src,
298
298
" Source and destination arrays must have the same data type" );
299
299
}
300
300
301
- // ensures also that destinaton is plenty ample to accomodate all
301
+ // ensures also that destination is plenty ample to accommodate all
302
302
// elements of src array
303
303
if (!dst.is_f_contiguous ()) {
304
304
throw py::value_error (" Destination array must be F-contiguous" );
@@ -451,7 +451,7 @@ py_as_c_contig_f2c(const dpctl::tensor::usm_ndarray &src,
451
451
" Source and destination arrays must have the same data type" );
452
452
}
453
453
454
- // ensures also that destinaton is plenty ample to accomodate all
454
+ // ensures also that destination is plenty ample to accommodate all
455
455
// elements of src array
456
456
if (!dst.is_c_contiguous ()) {
457
457
throw py::value_error (" Destination array must be C-contiguous" );
@@ -604,7 +604,7 @@ py_as_f_contig_c2f(const dpctl::tensor::usm_ndarray &src,
604
604
throw py::value_error (" Arrays must have 2 or more axes" );
605
605
}
606
606
607
- // ensures also that destinaton is plenty ample to accomodate all
607
+ // ensures also that destination is plenty ample to accommodate all
608
608
// elements of src array
609
609
if (!dst.is_f_contiguous ()) {
610
610
throw py::value_error (" Destination array must be C-contiguous" );
0 commit comments