Skip to content

Commit

Permalink
Correct less than or equal symbol in doc in vector_relational.rs
Browse files Browse the repository at this point in the history
Less than or equal <=
  • Loading branch information
Ababwa authored and Ralith committed Jan 12, 2024
1 parent 7866bce commit 0b89950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nalgebra-glm/src/vector_relational.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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:
///
Expand Down

0 comments on commit 0b89950

Please sign in to comment.