Skip to content

Commit

Permalink
Merge pull request #96 from sevenval/develop
Browse files Browse the repository at this point in the history
Fixed defective example.
  • Loading branch information
rcanavan authored Sep 23, 2020
2 parents 1c89405 + a383972 commit 1ff7c6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reference/variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ begin with `$` followed by a letter and then more letters or numbers.
<!-- $x = 1 -->
<eval out="$x">1</eval>
<!-- $x = $x + 5 -->
<eval in="$x" out="$x">{{ . + 5 }}</eval>
<eval out="$x">$x + 5</eval>
<!-- $answer = $x * 7 -->
<eval out="$answer">{{ $x * 7 }}</eval>
<eval out="$answer">$x * 7</eval>
</flow>
```

Expand Down

0 comments on commit 1ff7c6b

Please sign in to comment.