From 0574cce1c6480565437418d35fa6c984facd7c34 Mon Sep 17 00:00:00 2001 From: Andrew Dover Date: Thu, 2 Feb 2017 12:26:30 +1300 Subject: [PATCH] Update 01_Syntax.md Fixed spelling mistake --- docs/en/02_Developer_Guides/01_Templates/01_Syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/02_Developer_Guides/01_Templates/01_Syntax.md b/docs/en/02_Developer_Guides/01_Templates/01_Syntax.md index 11b01de0b..bd2d472b3 100644 --- a/docs/en/02_Developer_Guides/01_Templates/01_Syntax.md +++ b/docs/en/02_Developer_Guides/01_Templates/01_Syntax.md @@ -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.