diff --git a/_tags/variable.md b/_tags/variable.md index 612778a..95d0a36 100644 --- a/_tags/variable.md +++ b/_tags/variable.md @@ -79,7 +79,7 @@ I am 35 and my favourite food is pizza. ## increment -Creates a new number variable, and increases its value by one every time it is called. The initial value is 0. +Creates and outputs a new number variable. On subsequent calls, it increases its value by one and outputs the new value. The initial value is 0.
Input
```liquid @@ -122,7 +122,7 @@ In the example below, a variable named "var" is created through `assign`. The `i ## decrement -Creates a new number variable, and decreases its value by one every time it is called. The initial value is -1. +Creates and outputs a new number variable. On subsequent calls, it decreases its value by one and outputs the new value. The initial value is -1.Input
```liquid