From 5ee8a49f868728f03fa62562ccf2a04c309937ee Mon Sep 17 00:00:00 2001
From: Xavier Robin <xavalias-github@xavier.robin.name>
Date: Mon, 25 Sep 2023 10:09:14 +0200
Subject: [PATCH] doc: no brackets

---
 modules/geom/doc/vec.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/geom/doc/vec.rst b/modules/geom/doc/vec.rst
index c55dcbb65..4e66afa15 100644
--- a/modules/geom/doc/vec.rst
+++ b/modules/geom/doc/vec.rst
@@ -39,7 +39,7 @@ The standard vector operations are implemented as :ref:`free standing functions
 
 Vector Classes
 --------------------------------------------------------------------------------
-.. class:: Vec2([x=0.0, y=0.0, z=0.0])
+.. class:: Vec2(x=0.0, y=0.0, z=0.0)
            Vec2(vec)
            
    Real-valued vector in 2 dimensions.
@@ -65,7 +65,7 @@ Vector Classes
    .. attribute:: y
 
      The y-coordinate of the vector.
-.. class:: Vec3([x=0.0, y=0.0, z=0.0])
+.. class:: Vec3(x=0.0, y=0.0, z=0.0)
            Vec3(vec)
     
     Real-valued vector in 3 dimensions.
@@ -99,7 +99,7 @@ Vector Classes
       
       :type: float or int
 
-.. class:: Vec4([x=0.0, y=0.0, z=0.0, w=1.0])
+.. class:: Vec4(x=0.0, y=0.0, z=0.0, w=1.0)
            Vec4(vec)
 
     Real-valued vector in 4 dimensions.
-- 
GitLab