Syntax fix for core guide

This commit is contained in:
jpfeiffer16 2022-10-31 21:50:09 -04:00
parent 54649a398e
commit 635fc16a5a

View File

@ -81,7 +81,7 @@ It is frequently helpful, when constructing these, to be able to output the valu
sum
%= $
counter (add counter 1)
sum (add sum counter))
sum (add sum counter)
==
```
@ -97,7 +97,7 @@ You can do even better using _interpolation_:
sum
%= $
counter (add counter 1)
sum (add sum counter))
sum (add sum counter)
==
```