Correct less than or equal symbol in doc in vector_relational.rs

Less than or equal <=
This commit is contained in:
Ababwa 2024-01-09 06:50:38 -07:00 committed by Benjamin Saunders
parent 7866bcee5c
commit 0b89950fca
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ pub fn less_than<T: Number, const D: usize>(x: &TVec<T, D>, y: &TVec<T, D>) -> T
x.zip_map(y, |x, y| x < y)
}
/// Component-wise `>=` comparison.
/// Component-wise `<=` comparison.
///
/// # Examples:
///