Merge pull request #6592 from adover/patch-2

Update 01_Syntax.md
This commit is contained in:
Daniel Hensby 2017-02-02 12:59:53 +00:00 committed by GitHub
commit c753d820fe

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.