From 19898d8d3e6c3def33625082343428be1bb9387b Mon Sep 17 00:00:00 2001 From: spawayz <50929461+spawayz@users.noreply.github.com> Date: Tue, 13 Dec 2022 23:28:54 -0300 Subject: [PATCH] Fixed possible typo. --- documentation/source/tutorial/variables.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/source/tutorial/variables.rst b/documentation/source/tutorial/variables.rst index d2b7d3b8..8e361403 100644 --- a/documentation/source/tutorial/variables.rst +++ b/documentation/source/tutorial/variables.rst @@ -19,7 +19,7 @@ You can interact with the Lua Virtual Machine like so: :linenos: :lines: 1-10, 12-12, 20-24, 70- -From this example, you can see that there's many ways to pull out the varaibles you want. For example, to determine if a nested variable exists or not, you can use ``auto`` to capture the value of a ``table[key]`` lookup, and then use the ``.valid()`` method: +From this example, you can see that there's many ways to pull out the variables you want. For example, to determine if a nested variable exists or not, you can use ``auto`` to capture the value of a ``table[key]`` lookup, and then use the ``.valid()`` method: .. literalinclude:: ../../../examples/source/tutorials/variables_demo.cpp