Problem
Several validation error messages in chromadb/api/types.py contain grammar errors:
- Line 1238:
"an list" → "a list" (in validate_where $in/$nin error)
- Line 1356:
"a int" → "an int" (in validate_n_results error)
- Line 1269:
"those type" → "those types" (in validate_where operand error)
Affected Files
chromadb/api/types.py — error message strings only, no logic changes
Proposed Fix
Fix the three grammar errors in the error message strings.
Problem
Several validation error messages in
chromadb/api/types.pycontain grammar errors:"an list"→"a list"(invalidate_where$in/$ninerror)"a int"→"an int"(invalidate_n_resultserror)"those type"→"those types"(invalidate_whereoperand error)Affected Files
chromadb/api/types.py— error message strings only, no logic changesProposed Fix
Fix the three grammar errors in the error message strings.