Skip to content

Commit a7a5f6e

Browse files
committed
typo
1 parent 0258d81 commit a7a5f6e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

faiss/impl/Panorama.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Panorama::Panorama(
6666

6767
void Panorama::set_derived_values() {
6868
FAISS_THROW_IF_NOT_MSG(n_levels > 0, "Panorama: n_levels must be > 0");
69-
FAISS_THROW_IF_NOT_MSG(n_nlevels <= d, "Panorama: n_levels must be <= d");
69+
FAISS_THROW_IF_NOT_MSG(n_levels <= d, "Panorama: n_levels must be <= d");
7070
this->d = code_size / sizeof(float);
7171
this->level_width_floats = ((d + n_levels - 1) / n_levels);
7272
this->level_width = this->level_width_floats * sizeof(float);

0 commit comments

Comments
 (0)