diff --git a/nalgebra-glm/src/vector_relational.rs b/nalgebra-glm/src/vector_relational.rs index fe5d4b2d..a12dd9c1 100644 --- a/nalgebra-glm/src/vector_relational.rs +++ b/nalgebra-glm/src/vector_relational.rs @@ -52,7 +52,7 @@ pub fn any(v: &TVec) -> bool /// Component-wise equality comparison. /// -/// See also: +/// # See also: /// /// * [`equal`](fn.equal.html) /// * [`greater_than`](fn.greater_than.html) @@ -68,7 +68,7 @@ pub fn equal(x: &TVec, y: &TVec) -> TVec` comparison. /// -/// See also: +/// # See also: /// /// * [`equal`](fn.equal.html) /// * [`greater_than`](fn.greater_than.html) @@ -84,7 +84,7 @@ pub fn greater_than(x: &TVec, y: &TVec) -> /// Component-wise `>=` comparison. /// -/// See also: +/// # See also: /// /// * [`equal`](fn.equal.html) /// * [`greater_than`](fn.greater_than.html) @@ -100,7 +100,7 @@ pub fn greater_than_equal(x: &TVec, y: &TVec(x: &TVec, y: &TVec) -> TVe /// Component-wise `>=` comparison. /// -/// See also: +/// # See also: /// /// * [`equal`](fn.equal.html) /// * [`greater_than`](fn.greater_than.html) @@ -140,7 +140,7 @@ pub fn less_than_equal(x: &TVec, y: &TVec) /// assert_eq!(glm::vec2(false, true), glm::not(&vec)); /// ``` /// -/// See also: +/// # See also: /// /// * [`all`](fn.all.html) /// * [`any`](fn.any.html) @@ -158,7 +158,7 @@ pub fn not(v: &TVec) -> TVec /// Component-wise not-equality `!=`. /// -/// See also: +/// # See also: /// /// * [`equal`](fn.equal.html) /// * [`greater_than`](fn.greater_than.html)