From 1d86f418315a2dd632016c32bfedfcf2af1b0369 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Sun, 29 Jan 2023 23:41:54 +0100 Subject: Remove more blocks --- library/src/math/matrix.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'library/src/math') diff --git a/library/src/math/matrix.rs b/library/src/math/matrix.rs index 6aa7ba77..ca2fb9fd 100644 --- a/library/src/math/matrix.rs +++ b/library/src/math/matrix.rs @@ -75,7 +75,7 @@ impl LayoutMath for VecNode { /// - rows: Array (positional, variadic) /// An array of arrays with the rows of the matrix. /// -/// # Example +/// ### Example /// ``` /// #let data = ((1, 2, 3), (4, 5, 6)) /// #let matrix = math.mat(..data) @@ -210,15 +210,15 @@ impl Delimiter { castable! { Delimiter, - /// Delimit the vector with parentheses. + /// Delimit with parentheses. "(" => Self::Paren, - /// Delimit the vector with brackets. + /// Delimit with brackets. "[" => Self::Bracket, - /// Delimit the vector with curly braces. + /// Delimit with curly braces. "{" => Self::Brace, - /// Delimit the vector with vertical bars. + /// Delimit with vertical bars. "|" => Self::Bar, - /// Delimit the vector with double vertical bars. + /// Delimit with double vertical bars. "||" => Self::DoubleBar, } -- cgit v1.2.3