aboutsummaryrefslogtreecommitdiffstats
path: root/docs/yul.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/yul.rst')
-rw-r--r--docs/yul.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/yul.rst b/docs/yul.rst
index a55445f3..9e9fac8e 100644
--- a/docs/yul.rst
+++ b/docs/yul.rst
@@ -44,7 +44,7 @@ and ``mod`` are available either natively or as functions and computes exponenti
switch exponent
case 0:u256 { result := 1:u256 }
case 1:u256 { result := base }
- default:
+ default
{
result := power(mul(base, base), div(exponent, 2:u256))
switch mod(exponent, 2:u256)