Put the initial values into a code container

It looks better and more readable this way.
This commit is contained in:
ADTC
2021-03-05 04:17:45 +08:00
committed by GitHub
parent c63fcdfe0a
commit 506df22f41
+2 -2
View File
@@ -79,7 +79,7 @@ I am 35 and my favourite food is pizza.
## increment
Creates and outputs a new number variable with initial value 0. On subsequent calls, it increases its value by one and outputs the new value.
Creates and outputs a new number variable with initial value `0`. On subsequent calls, it increases its value by one and outputs the new value.
<p class="code-label">Input</p>
```liquid
@@ -122,7 +122,7 @@ In the example below, a variable named "var" is created through `assign`. The `i
## decrement
Creates and outputs a new number variable with initial value -1. On subsequent calls, it decreases its value by one and outputs the new value.
Creates and outputs a new number variable with initial value `-1`. On subsequent calls, it decreases its value by one and outputs the new value.
<p class="code-label">Input</p>
```liquid