From bf16102cc3f36c49429f0b0c7d40124ea2d94c3c Mon Sep 17 00:00:00 2001 From: Arpit Srivastava <52847458+Skyvastern@users.noreply.github.com> Date: Sat, 10 Jun 2023 23:21:19 +0530 Subject: [PATCH] Add missing full stop --- tutorials/shaders/your_first_shader/your_first_2d_shader.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/shaders/your_first_shader/your_first_2d_shader.rst b/tutorials/shaders/your_first_shader/your_first_2d_shader.rst index 93c6b0eedd5..63a536f5dc8 100644 --- a/tutorials/shaders/your_first_shader/your_first_2d_shader.rst +++ b/tutorials/shaders/your_first_shader/your_first_2d_shader.rst @@ -93,7 +93,7 @@ every pixel. We do so by writing a ``vec4`` to the built-in variable ``COLOR``. ``vec4`` is shorthand for constructing a vector with 4 numbers. For more information about -vectors see the :ref:`Vector math tutorial ` ``COLOR`` is both +vectors see the :ref:`Vector math tutorial `. ``COLOR`` is both an input variable to the fragment function and the final output from it. .. code-block:: glsl