From becf8f1663ca6ecc865a1590ab23c46dc54da307 Mon Sep 17 00:00:00 2001 From: snailrhymer <61291296+snailrhymer@users.noreply.github.com> Date: Wed, 27 Apr 2022 00:17:39 +0100 Subject: [PATCH] Fix a typo in Physics introduction (#5778) --- tutorials/physics/physics_introduction.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/physics/physics_introduction.rst b/tutorials/physics/physics_introduction.rst index bc75c8af2..4fceecb95 100644 --- a/tutorials/physics/physics_introduction.rst +++ b/tutorials/physics/physics_introduction.rst @@ -172,7 +172,7 @@ would be as follows:: 0x000d # (This value can be shortened to 0xd) - # Decimal - Add the results of 2 to the power of (layer be enabled-1). + # Decimal - Add the results of 2 to the power of (layer to be enabled - 1). # (2^(1-1)) + (2^(3-1)) + (2^(4-1)) = 1 + 4 + 8 = 13 pow(2, 1) + pow(2, 3) + pow(2, 4)