From 8f92970f86cd9dbe88c6924b318cac03325e3563 Mon Sep 17 00:00:00 2001 From: Olivia Appleton Date: Sat, 7 Sep 2024 10:45:40 -0500 Subject: [PATCH] fix some rendering issues --- docs/src/lua/lib/range.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/lua/lib/range.rst b/docs/src/lua/lib/range.rst index ad9e195c..569b40ae 100644 --- a/docs/src/lua/lib/range.rst +++ b/docs/src/lua/lib/range.rst @@ -7,14 +7,14 @@ This module directly ports some of the logic found in Python's :external:py:func .. lua:function:: range_entry3(start, step, idx) - :return: The ``start + (step * idx)`` + :return: ``start + (step * idx)`` :rtype: number .. lua:function:: range_entry4(start, stop, step, idx) - :return: The ``idx``th entry of ``start,(stop-1),step`` + :return: The ``idx``\ :sup:`th` entry of ``start,(stop-1),step`` :rtype: number -.. literalinclude:: ../../../lua/src/lib/range.lua +.. literalinclude:: ../../../../lua/src/lib/range.lua :language: Lua :linenos: