Update 01_Syntax.md

Fixed spelling mistake
This commit is contained in:
Andrew Dover 2017-02-02 12:26:30 +13:00 committed by GitHub
parent 305bcac971
commit 0574cce1c6

View File

@ -466,7 +466,7 @@ The `<% with %>` tag lets you change into a new scope. Consider the following ex
This is functionalty the same as the following:
:::ss
Hello, $CurrentMember.FirstName, welcome back. Yout current balance is $CurrentMember.Balance
Hello, $CurrentMember.FirstName, welcome back. Your current balance is $CurrentMember.Balance
Notice that the first example is much tidier, as it removes the repeated use of the `$CurrentMember` accessor.