From ccc55b5766480c4559eb818eeb513bcb22b9af44 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sun, 7 Oct 2018 20:47:59 +0700 Subject: [PATCH] Correctly flag "See also" headers. --- nalgebra-glm/src/vector_relational.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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)