cpp : fixed a few typos

This commit is contained in:
saundersp
2023-07-21 19:31:15 +02:00
parent e40bbb999f
commit c048b3ca90
2 changed files with 7 additions and 7 deletions

View File

@ -534,7 +534,7 @@ namespace np {
// bool Array<T>::operator==(const Array& other) const noexcept {
// if (shape != other.shape)
// return false;
// const size_t lenght = np::prod(shape);
// const size_t length = np::prod(shape);
// for(size_t i = 0; i < length; ++i)
// if (data[i] != other[i])
// return false;